智慧保安后台管理-外网
Administrator
2021-11-05 45eb881ac05b0f9f95deae5eb203c23a7546efcb
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
37
38
39
40
41
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);
}