|
@@ -17,6 +17,7 @@ public interface StudentRegistrationService extends BaseService<Long, StudentReg
|
|
|
|
|
|
/**
|
|
|
* 获取乐团学员报名详情
|
|
|
+ *
|
|
|
* @param queryInfo
|
|
|
* @return
|
|
|
*/
|
|
@@ -24,6 +25,7 @@ public interface StudentRegistrationService extends BaseService<Long, StudentReg
|
|
|
|
|
|
/**
|
|
|
* 批量调剂
|
|
|
+ *
|
|
|
* @param userId
|
|
|
* @param subId
|
|
|
* @return
|
|
@@ -32,15 +34,17 @@ public interface StudentRegistrationService extends BaseService<Long, StudentReg
|
|
|
|
|
|
/**
|
|
|
* 学生报名缴费金额详情
|
|
|
+ *
|
|
|
* @param studentId
|
|
|
* @param musicGroupId
|
|
|
* @return
|
|
|
*/
|
|
|
- StudentFeeDto queryFeeDetail(Integer studentId,String musicGroupId);
|
|
|
+ StudentFeeDto queryFeeDetail(Integer studentId, String musicGroupId);
|
|
|
|
|
|
/**
|
|
|
* 获取未分配的班级的学生
|
|
|
- * @param musicGroupId 乐团id
|
|
|
+ *
|
|
|
+ * @param musicGroupId 乐团id
|
|
|
* @param actualSubjectId 科目id
|
|
|
* @return
|
|
|
*/
|
|
@@ -48,11 +52,20 @@ public interface StudentRegistrationService extends BaseService<Long, StudentReg
|
|
|
|
|
|
/**
|
|
|
* 获取乐团声部未分配学生统计
|
|
|
+ *
|
|
|
* @param musicGroupId
|
|
|
* @param actualSubjectId
|
|
|
* @return
|
|
|
*/
|
|
|
- Integer getNoClassStuCountBySubjectId(@Param("musicGroupId") Integer musicGroupId, @Param("actualSubjectId") Integer actualSubjectId);
|
|
|
+ Integer getNoClassStuCountBySubjectId(Integer musicGroupId, Integer actualSubjectId);
|
|
|
|
|
|
|
|
|
+ /**
|
|
|
+ * 根据user_id 和 乐团id更新
|
|
|
+ *
|
|
|
+ * @param studentRegistration
|
|
|
+ * @return
|
|
|
+ */
|
|
|
+ Integer updateByUserIdAndMusicGroupId(StudentRegistration studentRegistration);
|
|
|
+
|
|
|
}
|