heheng
9 天以前 e81044d3375d00f08c2b4d66c1d09d18873360ba
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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
package com.gkhy.exam.system.service;
 
import com.gkhy.exam.common.api.CommonPage;
import com.gkhy.exam.system.domain.ExExamRecord;
import com.baomidou.mybatisplus.extension.service.IService;
import org.springframework.web.multipart.MultipartFile;
 
/**
 * <p>
 * 线下教育登记表 服务类
 * </p>
 *
 * @author kzy
 * @since 2024-06-24 16:16:33
 */
public interface ExExamRecordService extends IService<ExExamRecord> {
    /**
     * 根据条件分页查询登记列表
     * @param examRecord
     * @return
     */
    CommonPage selectExamRecordList(ExExamRecord examRecord);
 
 
    /**
     * 根据id查询登记信息
     *
     * @param recordId
     * @return
     */
    public ExExamRecord selectExamRecordById(Long recordId);
 
 
    /**
     * 新增登记记录
     *
     * @param examRecord
     * @return 结果
     */
    public int insertExamRecord(ExExamRecord examRecord);
 
 
    /**
     * 修改登记记录
     *
     * @param examRecord
     * @return 结果
     */
    public int updateExamRecord(ExExamRecord examRecord);
 
    /**
     * 删除登记记录
     *
     * @param recordId
     * @return 结果
     */
    public int deleteExamRecordById(Long recordId);
 
 
    /**
     * 校验登记记录是否唯一
     *
     * @param examRecord
     * @return boolean
     */
    public boolean checkRecordUnique(ExExamRecord examRecord);
 
    /**
     * 导入登记记录
     */
    public void importRecord(MultipartFile file);
 
}