src/main/java/com/mindskip/xzs/service/ExamPaperService.java
@@ -37,7 +37,21 @@ List<ExamPaper> gets(Integer[] ids); /** * 普通试卷答题记录 * * @param id * @return */ List<PaperExcelVO> getPaperExcelById(Integer id); /** * 随机试卷答题记录 * * @param id * @return */ List<PaperExcelVO> getRandomPaperExcelById(Integer id); void missExam(ExamPaperEditRequestVM model); @@ -53,4 +67,10 @@ PageInfo<UserVO> selectStudent(UserVO userVO, List<Integer> adminDeptIds); void missExamByTemplateId(ExamTemplatesVO model); /** * 考试统计的查询条件 * @return 试卷id、名称、类型 */ List<ExamPaper> queryCondition(); }