|
@@ -1,5 +1,6 @@
|
|
package com.ym.mec.biz.dal.dao;
|
|
package com.ym.mec.biz.dal.dao;
|
|
|
|
|
|
|
|
+import com.ym.mec.biz.dal.dto.EduHomeworkCardDto;
|
|
import com.ym.mec.biz.dal.dto.ExtraExerciseStudentsDto;
|
|
import com.ym.mec.biz.dal.dto.ExtraExerciseStudentsDto;
|
|
import com.ym.mec.biz.dal.dto.StudentServiceDetailDto;
|
|
import com.ym.mec.biz.dal.dto.StudentServiceDetailDto;
|
|
import com.ym.mec.biz.dal.entity.ExtracurricularExercisesReply;
|
|
import com.ym.mec.biz.dal.entity.ExtracurricularExercisesReply;
|
|
@@ -122,4 +123,16 @@ public interface ExtracurricularExercisesReplyDao extends BaseDAO<Long, Extracur
|
|
Set<Integer> checkStudentHaveExercisesInDateRange(@Param("startDate") String startDate,
|
|
Set<Integer> checkStudentHaveExercisesInDateRange(@Param("startDate") String startDate,
|
|
@Param("endDate") String endDate,
|
|
@Param("endDate") String endDate,
|
|
@Param("studentIds") List<Integer> studentIds);
|
|
@Param("studentIds") List<Integer> studentIds);
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+ /**
|
|
|
|
+ * @describe 获取课外训练列表-教务端
|
|
|
|
+ * @author Joburgess
|
|
|
|
+ * @date 2021/5/24 0024
|
|
|
|
+ * @param params:
|
|
|
|
+ * @return java.util.List<com.ym.mec.biz.dal.dto.EduHomeworkCardDto>
|
|
|
|
+ */
|
|
|
|
+ List<EduHomeworkCardDto> getEduHomeworkList(Map<String, Object> params);
|
|
|
|
+ int countEduHomeworkList(Map<String, Object> params);
|
|
}
|
|
}
|