|
@@ -52,26 +52,27 @@ public interface TCStatisticsMapper extends BaseMapper<TCStatistics> {
|
|
|
|
|
|
/**
|
|
|
* 查询命题计划统计表
|
|
|
- * @param iPage 分页参数
|
|
|
- * @param examId 考试id
|
|
|
- * @param collegeId 学院id
|
|
|
+ *
|
|
|
+ * @param iPage 分页参数
|
|
|
+ * @param semesterId 学期id
|
|
|
+ * @param examId 考试id
|
|
|
+ * @param collegeId 学院id
|
|
|
* @param teachingRoomId 教研室id
|
|
|
- * @param status 状态
|
|
|
- * @param courseName 课程名称
|
|
|
- * @param teacherName 任课教师名称
|
|
|
- * @param userId 用户
|
|
|
+ * @param status 状态
|
|
|
+ * @param courseName 课程名称
|
|
|
+ * @param teacherName 任课教师名称
|
|
|
+ * @param userId 用户
|
|
|
* @return 查询结果
|
|
|
*/
|
|
|
public IPage<TCStatisticResult> findExamTaskPrintStatistic(@Param("iPage") Page<TCStatisticResult> iPage,
|
|
|
- @Param("examId") Long examId,
|
|
|
- @Param("collegeId") Long collegeId,
|
|
|
- @Param("teachingRoomId") Long teachingRoomId,
|
|
|
- @Param("status") StatisticsStatusEnum status,
|
|
|
- @Param("courseName") String courseName,
|
|
|
- @Param("teacherName") String teacherName,
|
|
|
- @Param("userId") Long userId);
|
|
|
-
|
|
|
-
|
|
|
+ @Param("semesterId") Long semesterId,
|
|
|
+ @Param("examId") Long examId,
|
|
|
+ @Param("collegeId") Long collegeId,
|
|
|
+ @Param("teachingRoomId") Long teachingRoomId,
|
|
|
+ @Param("status") StatisticsStatusEnum status,
|
|
|
+ @Param("courseName") String courseName,
|
|
|
+ @Param("teacherName") String teacherName,
|
|
|
+ @Param("userId") Long userId);
|
|
|
|
|
|
|
|
|
/**
|
|
@@ -96,9 +97,10 @@ public interface TCStatisticsMapper extends BaseMapper<TCStatistics> {
|
|
|
|
|
|
/**
|
|
|
* 根据考试id和课程编号查询命题计划统计数据
|
|
|
- * @param examId 考试id
|
|
|
+ *
|
|
|
+ * @param examId 考试id
|
|
|
* @param courseCode 课程编号
|
|
|
* @return 命题计划统计数据
|
|
|
*/
|
|
|
- List<ExamTaskPlanStatisticDto> findByExamIdCourseCode(@Param("examId")Long examId, @Param("courseCode") String courseCode);
|
|
|
+ List<ExamTaskPlanStatisticDto> findByExamIdCourseCode(@Param("examId") Long examId, @Param("courseCode") String courseCode);
|
|
|
}
|