|
@@ -1,6 +1,7 @@
|
|
package com.ym.mec.biz.service;
|
|
package com.ym.mec.biz.service;
|
|
|
|
|
|
import com.ym.mec.biz.dal.dto.CourseScheduleStudentListDto;
|
|
import com.ym.mec.biz.dal.dto.CourseScheduleStudentListDto;
|
|
|
|
+import com.ym.mec.biz.dal.dto.SimpleUserDto;
|
|
import com.ym.mec.biz.dal.entity.CourseSchedule;
|
|
import com.ym.mec.biz.dal.entity.CourseSchedule;
|
|
import com.ym.mec.biz.dal.entity.CourseScheduleStudentPayment;
|
|
import com.ym.mec.biz.dal.entity.CourseScheduleStudentPayment;
|
|
import com.ym.mec.biz.dal.page.CourseScheduleQueryInfo;
|
|
import com.ym.mec.biz.dal.page.CourseScheduleQueryInfo;
|
|
@@ -99,4 +100,13 @@ public interface CourseScheduleStudentPaymentService extends BaseService<Long, C
|
|
*/
|
|
*/
|
|
Map<String, Object> queryCourseStudentList(CourseScheduleStudentPaymentQueryInfo queryInfo);
|
|
Map<String, Object> queryCourseStudentList(CourseScheduleStudentPaymentQueryInfo queryInfo);
|
|
|
|
|
|
|
|
+ /**
|
|
|
|
+ * @describe 获取指定课程上的学员信息
|
|
|
|
+ * @author qnc99
|
|
|
|
+ * @date 2020/11/27 0027
|
|
|
|
+ * @param courseIds:
|
|
|
|
+ * @return java.util.List<com.ym.mec.biz.dal.dto.SimpleUserDto>
|
|
|
|
+ */
|
|
|
|
+ List<SimpleUserDto> getCourseStudents(List<Long> courseIds);
|
|
|
|
+
|
|
}
|
|
}
|