xiangpei
2025-05-14 47cd9ecc0eff38ffe6b3b794b2bf197e958f4403
src/main/java/com/mindskip/xzs/service/ExamPaperService.java
@@ -3,6 +3,7 @@
import com.github.pagehelper.PageInfo;
import com.mindskip.xzs.domain.ExamPaper;
import com.mindskip.xzs.domain.User;
import com.mindskip.xzs.domain.vo.ExamTemplatesVO;
import com.mindskip.xzs.domain.vo.PaperExcelVO;
import com.mindskip.xzs.domain.vo.UserVO;
import com.mindskip.xzs.viewmodel.admin.exam.ExamPaperEditRequestVM;
@@ -36,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);
@@ -50,4 +65,12 @@
     * @return
     */
    PageInfo<UserVO> selectStudent(UserVO userVO, List<Integer> adminDeptIds);
    void missExamByTemplateId(ExamTemplatesVO model);
    /**
     * 考试统计的查询条件
     * @return 试卷id、名称、类型
     */
    List<ExamPaper> queryCondition();
}