智慧保安后台管理-外网项目备份
钟日健
2026-06-01 62eb499b0c969f246d3245d1429a97da4de1ce28
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
 
package org.springblade.modules.simulateexam.mapper;
 
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;
 
import java.util.List;
 
/**
 *  Mapper 接口
 *
 * @author zhongrj
 * @since 2022-02-23
 */
public interface SimulateExamRecordMapper extends BaseMapper<SimulateExamRecord> {
 
    /**
     * 自定义分页
     *
     * @param page
     * @param simulateExamRecord
     * @return
     */
    List<SimulateExamRecordVO> selectSimulateExamRecordPage(IPage<SimulateExamRecordVO> page, @Param("simulateExamRecord") SimulateExamRecordVO simulateExamRecord);
 
    /**
     * 查询当前人员当前模拟考试的考试题目信息
     * @param list 题目id 集合
     * @return
     */
    List<ExamSubjectChoicesVO> getSimulateExamRefreshList(@Param("list") List<Long> list);
}