智慧保安后台管理-外网
钟日健
2022-02-25 afc2b4d2800d91c793523d14fbe2d6fbbd319fc0
src/main/java/org/springblade/modules/simulateexam/service/SimulateExamRecordService.java
@@ -23,4 +23,31 @@
    */
   IPage<SimulateExamRecordVO> selectSimulateExamRecordPage(IPage<SimulateExamRecordVO> page, SimulateExamRecordVO simulateExamRecordVO);
   /**
    * 首次点击开始考试,创建模拟考试
    * @param simulateExamRecord 模拟考试记录对象信息
    * @return
    */
   Object insertSimulateExamRecord(SimulateExamRecord simulateExamRecord);
   /**
    * 暂停模拟考试
    * @param simulateExamRecord
    * @return
    */
   Object pauseExam(SimulateExamRecord simulateExamRecord);
   /**
    * 模拟考试开始页面,查询是否有暂停中的模拟考试
    * @param simulateExamRecord 模拟考试记录对象信息
    * @return
    */
   Object getSimulateExamRecordInfo(SimulateExamRecord simulateExamRecord);
   /**
    * 考试暂停后继续,1查询所有的答题信息,2查询所有的已答信息  3其他信息
    * @param simulateExamRecord 必须包含 模拟考试id, type 1: 继续考试  2: 放弃之前的考试,重新生成题目考试
    * @return
    */
   Object getSimulateExamRefreshInfo(SimulateExamRecordVO simulateExamRecord);
}