智慧保安后台管理-外网项目备份
zhongrj
2023-09-17 8853292babb2ad94de4a3207966f1e83b767cd2d
src/main/java/org/springblade/modules/exam/service/ExamPaperService.java
@@ -123,4 +123,32 @@
    * @return
    */
   IPage<ExamStatisticsVO> getExamInfoByExamId(IPage<ExamStatisticsVO> page, ExamStatisticsVO examPaperVO);
   /**
    * 根据考试id 统计查询考试信息
    * @param examScoreVO
    * @return
    */
   List<ExamStatisticsVO> getExamInfoByExamIdList(ExamScoreVO examScoreVO);
   /**
    * 查询考试成绩明细
    * @param examScoreVO
    * @return
    */
   List<ExamScoreVO> getExamScoreList(ExamScoreVO examScoreVO);
   /**
    * 根据id 取出题目信息(随机取)
    * @param list 题目id集合
    * @param number 题目梳理
    * @return
    */
   List<ExamSubjectChoicesVO> queryRandomSubjectList(List<String> list, int number);
   /**
    * 模拟考试随机抽题,未缴费人员
    * @return
    */
   List<ExamSubjectChoicesVO> simulateQueryRandomSubjectList();
}