|
@@ -1,12 +1,5 @@
|
|
|
package com.ym.mec.biz.dal.dao;
|
|
|
|
|
|
-import java.util.Date;
|
|
|
-import java.util.List;
|
|
|
-import java.util.Map;
|
|
|
-
|
|
|
-import com.ym.mec.biz.dal.entity.ClassGroup;
|
|
|
-import org.apache.ibatis.annotations.Param;
|
|
|
-
|
|
|
import com.ym.mec.biz.dal.dto.StudentAttendanceViewDto;
|
|
|
import com.ym.mec.biz.dal.dto.TeacherClassStudentDto;
|
|
|
import com.ym.mec.biz.dal.entity.ClassGroupStudentMapper;
|
|
@@ -15,6 +8,11 @@ import com.ym.mec.biz.dal.enums.ClassGroupStudentStatusEnum;
|
|
|
import com.ym.mec.biz.dal.enums.ClassGroupTypeEnum;
|
|
|
import com.ym.mec.biz.dal.enums.GroupType;
|
|
|
import com.ym.mec.common.dal.BaseDAO;
|
|
|
+import org.apache.ibatis.annotations.Param;
|
|
|
+
|
|
|
+import java.util.Date;
|
|
|
+import java.util.List;
|
|
|
+import java.util.Map;
|
|
|
|
|
|
public interface ClassGroupStudentMapperDao extends BaseDAO<Long, ClassGroupStudentMapper> {
|
|
|
/**
|
|
@@ -69,6 +67,15 @@ public interface ClassGroupStudentMapperDao extends BaseDAO<Long, ClassGroupStud
|
|
|
String[] findStudentNumByClassGroupId(@Param("classGroupId") Long classGroupId);
|
|
|
|
|
|
/**
|
|
|
+ * @describe 获取课程上的学员名称集合
|
|
|
+ * @author Joburgess
|
|
|
+ * @date 2019/12/4
|
|
|
+ * @param courseScheduleId:
|
|
|
+ * @return java.lang.String[]
|
|
|
+ */
|
|
|
+ String[] findCourseStudentName(@Param("courseScheduleId") Integer courseScheduleId);
|
|
|
+
|
|
|
+ /**
|
|
|
* @param params:
|
|
|
* @return java.util.List<com.ym.mec.biz.dal.dto.TeacherClassStudentDto>
|
|
|
* @describe 获取班级学生
|