智慧保安后台管理-外网
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
package org.springblade.modules.exam.service;
 
import com.baomidou.mybatisplus.core.metadata.IPage;
import com.baomidou.mybatisplus.extension.service.IService;
import org.springblade.modules.accreditation.excel.ExportSecurityPaperExcel;
import org.springblade.modules.exam.entity.ScoreAuditRecords;
import org.springblade.modules.exam.vo.ScoreAuditRecordsVO;
 
import java.util.List;
 
/**
 * 考试成绩修改申请记录服务类
 * @author zhongrj
 */
public interface ScoreAuditRecordsService extends IService<ScoreAuditRecords> {
 
    /**
     * 自定义分页
     * @param page
     * @param scoreAuditRecords
     * @return
     */
    IPage<ScoreAuditRecordsVO> selectScoreAuditRecordsPage(IPage<ScoreAuditRecordsVO> page, ScoreAuditRecordsVO scoreAuditRecords);
 
    /**
     * 自定义详情信息
     * @param scoreAuditRecords
     * @return
     */
    ScoreAuditRecordsVO getScoreAuditRecordsDetails(ScoreAuditRecords scoreAuditRecords);
 
    /**
     * 申请审核
     * @param scoreAuditRecords
     * @return
     */
    boolean applyAudit(ScoreAuditRecords scoreAuditRecords);
}