package org.springblade.modules.exam.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.entity.ScoreAuditRecords;
|
import org.springblade.modules.exam.vo.ScoreAuditRecordsVO;
|
|
import java.util.List;
|
|
/**
|
* 考试成绩修改申请记录Mapper 接口
|
* @author zhongrj
|
*/
|
public interface ScoreAuditRecordsMapper extends BaseMapper<ScoreAuditRecords> {
|
|
|
|
/**
|
* 自定义分页
|
*
|
* @param page 分页
|
* @param recruitment 实体
|
* @return
|
*/
|
List<ScoreAuditRecordsVO> selectScoreAuditRecordsPage(IPage page, @Param("scoreAuditRecords") ScoreAuditRecordsVO recruitment);
|
|
/**
|
* 自定义详情信息
|
* @param scoreAuditRecords
|
* @return
|
*/
|
ScoreAuditRecordsVO getScoreAuditRecordsDetails(@Param("scoreAuditRecords") ScoreAuditRecords scoreAuditRecords);
|
|
/**
|
* 导出保安员证信息
|
* @param scoreAuditRecords
|
* @return
|
*/
|
List<ScoreAuditRecordsVO> exportSecurityPaperList(@Param("scoreAuditRecords") ScoreAuditRecordsVO scoreAuditRecords);
|
}
|