|
@@ -46,9 +46,10 @@ public interface TBExamStudentMapper extends BaseMapper<TBExamStudent> {
|
|
|
* @param schoolId
|
|
|
* @param examId
|
|
|
* @param courseCode
|
|
|
+ * @param inspectCollegeId
|
|
|
* @return
|
|
|
*/
|
|
|
- List<TBExamStudentResult> selectTeachList(@Param("schoolId") Long schoolId, @Param("examId") Long examId, @Param("courseCode") String courseCode);
|
|
|
+ List<TBExamStudentResult> selectTeachList(@Param("schoolId") Long schoolId, @Param("examId") Long examId, @Param("courseCode") String courseCode, @Param("inspectCollegeId") Long inspectCollegeId);
|
|
|
|
|
|
/**
|
|
|
* 查询班级列表
|
|
@@ -108,7 +109,7 @@ public interface TBExamStudentMapper extends BaseMapper<TBExamStudent> {
|
|
|
* @param absent
|
|
|
* @return
|
|
|
*/
|
|
|
- IPage<TBStudentReportResult> reportList(IPage<Map> iPage, @Param("schoolId") Long schoolId, @Param("examId") Long examId, @Param("collegeId") Long collegeId, @Param("courseCode") String courseCode, @Param("clazzId") Long clazzId, @Param("absent") Boolean absent,@Param("studentCode") String studentCode);
|
|
|
+ IPage<TBStudentReportResult> reportList(IPage<Map> iPage, @Param("schoolId") Long schoolId, @Param("examId") Long examId, @Param("collegeId") Long collegeId, @Param("courseCode") String courseCode, @Param("clazzId") Long clazzId, @Param("absent") Boolean absent, @Param("studentCode") String studentCode);
|
|
|
|
|
|
List<ExamInfo> listExamBySchoolIdAndStudentCode(@Param("schoolId") Long schoolId, @Param("studentCode") String studentCode);
|
|
|
|