|
@@ -427,6 +427,7 @@ public interface StudentRegistrationDao extends BaseDAO<Long, StudentRegistratio
|
|
|
|
|
|
/**
|
|
|
* 批量删除注册信息
|
|
|
+ *
|
|
|
* @param ids
|
|
|
* @return
|
|
|
*/
|
|
@@ -434,6 +435,7 @@ public interface StudentRegistrationDao extends BaseDAO<Long, StudentRegistratio
|
|
|
|
|
|
/**
|
|
|
* 获取学员声部名称
|
|
|
+ *
|
|
|
* @param musicGroupId
|
|
|
* @param studentId
|
|
|
* @return
|
|
@@ -442,42 +444,46 @@ public interface StudentRegistrationDao extends BaseDAO<Long, StudentRegistratio
|
|
|
|
|
|
/**
|
|
|
* 获取学员声部名称
|
|
|
+ *
|
|
|
* @param musicGroupId
|
|
|
* @param studentIds
|
|
|
* @return
|
|
|
*/
|
|
|
- List<Map<Integer,String>> getStudentSubjectNameByStuIds(@Param("musicGroupId") String musicGroupId, @Param("studentIds") Collection<Integer> studentIds);
|
|
|
+ List<Map<Integer, String>> getStudentSubjectNameByStuIds(@Param("musicGroupId") String musicGroupId, @Param("studentIds") Collection<Integer> studentIds);
|
|
|
|
|
|
/**
|
|
|
* 将学员报名缴费状态更新至已缴费
|
|
|
+ *
|
|
|
* @param calenderId
|
|
|
*/
|
|
|
void updatePaymentStatusByClaenderId(Long calenderId);
|
|
|
|
|
|
/**
|
|
|
+ * @param studentIds:
|
|
|
+ * @return java.util.List<com.ym.mec.biz.dal.entity.MusicGroup>
|
|
|
* @describe 查询学员在读进行中乐团
|
|
|
* @author Joburgess
|
|
|
* @date 2021/1/29 0029
|
|
|
- * @param studentIds:
|
|
|
- * @return java.util.List<com.ym.mec.biz.dal.entity.MusicGroup>
|
|
|
*/
|
|
|
List<MusicGroup> getStudentNormalMusicGroups(@Param("studentIds") Set<Integer> studentIds);
|
|
|
|
|
|
/**
|
|
|
+ * @param userId:
|
|
|
+ * @return com.ym.mec.biz.dal.entity.MusicGroup
|
|
|
* @describe 获取学员最后加入的在读进行中乐团
|
|
|
* @author Joburgess
|
|
|
* @date 2021/2/28 0028
|
|
|
- * @param userId:
|
|
|
- * @return com.ym.mec.biz.dal.entity.MusicGroup
|
|
|
*/
|
|
|
MusicGroup getUserLastNormalMusicGroup(@Param("userId") Integer userId);
|
|
|
|
|
|
/**
|
|
|
+ * @param studentIds:
|
|
|
+ * @return java.util.List<com.ym.mec.biz.dal.entity.StudentRegistration>
|
|
|
* @describe 查询学员在读进行中乐团报名信息
|
|
|
* @author Joburgess
|
|
|
* @date 2021/2/25 0025
|
|
|
- * @param studentIds:
|
|
|
- * @return java.util.List<com.ym.mec.biz.dal.entity.StudentRegistration>
|
|
|
*/
|
|
|
List<StudentRegistration> getStudentNormalRegistration(@Param("studentIds") Set<Integer> studentIds);
|
|
|
+
|
|
|
+ StudentRegistration getByUserIdAndMusicGroupId(@Param("musicGroupId") String musicGroupId, @Param("userId") Integer userId);
|
|
|
}
|