| | |
| | | import com.baomidou.mybatisplus.core.mapper.BaseMapper; |
| | | import com.baomidou.mybatisplus.core.metadata.IPage; |
| | | import org.apache.ibatis.annotations.Param; |
| | | import org.springblade.modules.exam.vo.ExamSubjectChoicesVO; |
| | | import org.springblade.modules.simulateexam.entity.SimulateExamRecord; |
| | | import org.springblade.modules.simulateexam.vo.SimulateExamRecordVO; |
| | | |
| | |
| | | * @return |
| | | */ |
| | | List<SimulateExamRecordVO> selectSimulateExamRecordPage(IPage<SimulateExamRecordVO> page, @Param("simulateExamRecord") SimulateExamRecordVO simulateExamRecord); |
| | | |
| | | /** |
| | | * 查询当前人员当前模拟考试的考试题目信息 |
| | | * @param list 题目id 集合 |
| | | * @return |
| | | */ |
| | | List<ExamSubjectChoicesVO> getSimulateExamRefreshList(@Param("list") List<Long> list); |
| | | } |