|
@@ -10,6 +10,7 @@ import com.qmth.distributed.print.business.bean.result.SummarizedDataResult;
|
|
|
import com.qmth.distributed.print.business.entity.ExamDetail;
|
|
|
import com.qmth.distributed.print.business.entity.ExamDetailCourse;
|
|
|
import com.qmth.teachcloud.common.bean.dto.DataPermissionRule;
|
|
|
+import io.swagger.models.auth.In;
|
|
|
import org.apache.ibatis.annotations.Param;
|
|
|
|
|
|
import java.util.List;
|
|
@@ -94,19 +95,19 @@ public interface ExamDetailMapper extends BaseMapper<ExamDetail> {
|
|
|
@SuppressWarnings("MybatisXMapperMethodInspection")
|
|
|
List<Map> listStudentByExamDetailCourseId(@Param("schoolId") Long schoolId, @Param("examDetailCourseId") Long examDetailCourseId, @Param("ticketNumber") String ticketNumber, @Param("type") String type);
|
|
|
|
|
|
- String selectPaperCount(@Param("schoolId") Long schoolId,
|
|
|
- @Param("semesterId") Long semesterId,
|
|
|
- @Param("examId") Long examId,
|
|
|
- @Param("printPlanId") Long printPlanId,
|
|
|
- @Param("status") String status,
|
|
|
- @Param("courseCode") String courseCode,
|
|
|
- @Param("paperNumber") String paperNumber,
|
|
|
- @Param("examPlace") String examPlace,
|
|
|
- @Param("examRoom") String examRoom,
|
|
|
- @Param("examStartTime") Long examStartTime,
|
|
|
- @Param("examEndTime") Long examEndTime,
|
|
|
- @Param("printHouseId") Long printHouseId,
|
|
|
- @Param("dpr") DataPermissionRule dpr);
|
|
|
+ Integer selectPaperCount(@Param("schoolId") Long schoolId,
|
|
|
+ @Param("semesterId") Long semesterId,
|
|
|
+ @Param("examId") Long examId,
|
|
|
+ @Param("printPlanId") Long printPlanId,
|
|
|
+ @Param("status") String status,
|
|
|
+ @Param("courseCode") String courseCode,
|
|
|
+ @Param("paperNumber") String paperNumber,
|
|
|
+ @Param("examPlace") String examPlace,
|
|
|
+ @Param("examRoom") String examRoom,
|
|
|
+ @Param("examStartTime") Long examStartTime,
|
|
|
+ @Param("examEndTime") Long examEndTime,
|
|
|
+ @Param("printHouseId") Long printHouseId,
|
|
|
+ @Param("dpr") DataPermissionRule dpr);
|
|
|
|
|
|
List<ExamDetailCourse> listSyncPaperNumberByPrintPlanId(@Param("printPlanId") Long printPlanId);
|
|
|
|