|
@@ -21,7 +21,7 @@ public interface CourseScheduleStudentMusicScoreDao extends BaseDAO<Integer, Cou
|
|
|
* @param scheduleId
|
|
|
* @param userId
|
|
|
*/
|
|
|
- void closePlayStatus(@Param("scheduleId") long scheduleId, @Param("userId") Integer userId, @Param("musicScoreAccompanimentId") Integer musicScoreAccompanimentId);
|
|
|
+ void closePlayStatus(@Param("scheduleId") long scheduleId, @Param("userId") Integer userId, @Param("musicScoreAccompanimentId") String musicScoreAccompanimentId);
|
|
|
|
|
|
/**
|
|
|
* 开启原音播放
|
|
@@ -30,7 +30,7 @@ public interface CourseScheduleStudentMusicScoreDao extends BaseDAO<Integer, Cou
|
|
|
* @return
|
|
|
*/
|
|
|
int openPlayStatus(@Param("scheduleId") long scheduleId,
|
|
|
- @Param("musicScoreAccompanimentId") Integer musicScoreAccompanimentId,
|
|
|
+ @Param("musicScoreAccompanimentId") String musicScoreAccompanimentId,
|
|
|
@Param("userId") Integer userId);
|
|
|
|
|
|
/**
|
|
@@ -40,6 +40,6 @@ public interface CourseScheduleStudentMusicScoreDao extends BaseDAO<Integer, Cou
|
|
|
* @return
|
|
|
*/
|
|
|
int openAccompanimentPlayStatus(@Param("scheduleId") long scheduleId,
|
|
|
- @Param("musicScoreAccompanimentId") Integer musicScoreAccompanimentId,
|
|
|
+ @Param("musicScoreAccompanimentId") String musicScoreAccompanimentId,
|
|
|
@Param("userId") Integer userId);
|
|
|
}
|