|
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);
|
}
|