|
@@ -229,7 +229,7 @@ public interface StudentRegistrationDao extends BaseDAO<Long, StudentRegistratio
|
|
|
* @param musicGroupId
|
|
|
* @return
|
|
|
*/
|
|
|
- List<Map<Integer, String>> findMapByMusicGroupId(@Param("musicGroupId") String musicGroupId,@Param("paymentStatus")Integer paymentStatus);
|
|
|
+ List<Map<Integer, String>> findMapByMusicGroupId(@Param("musicGroupId") String musicGroupId, @Param("paymentStatus") Integer paymentStatus);
|
|
|
|
|
|
/**
|
|
|
* 根据乐团编号获取当前乐团所有已报名学员
|
|
@@ -237,7 +237,7 @@ public interface StudentRegistrationDao extends BaseDAO<Long, StudentRegistratio
|
|
|
* @param musicGroupId
|
|
|
* @return
|
|
|
*/
|
|
|
- List<Map<Integer, String>> findIdMapByMusicGroupId(@Param("musicGroupId") String musicGroupId,@Param("paymentStatus")Integer paymentStatus);
|
|
|
+ List<Map<Integer, String>> findIdMapByMusicGroupId(@Param("musicGroupId") String musicGroupId, @Param("paymentStatus") Integer paymentStatus);
|
|
|
|
|
|
/**
|
|
|
* 乐团开启缴费
|
|
@@ -250,8 +250,11 @@ public interface StudentRegistrationDao extends BaseDAO<Long, StudentRegistratio
|
|
|
|
|
|
/**
|
|
|
* 删除班级学生
|
|
|
+ *
|
|
|
* @param classGroupId
|
|
|
* @return
|
|
|
*/
|
|
|
int deleteClassGroup(@Param("classGroupId") Integer classGroupId);
|
|
|
+
|
|
|
+ int findMusicGroupStudentNum(@Param("musicGroupId") String musicGroupId);
|
|
|
}
|