kongzy
2023-09-22 3124f3a5b7f45d043b228829b6b3a2e541b31574
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
package com.nms.swspkmas_standalone.service;
 
import com.nms.swspkmas_standalone.entity.Examinee;
import com.baomidou.mybatisplus.extension.service.IService;
import com.nms.swspkmas_standalone.entity.vo.ExamineeVO;
import com.nms.swspkmas_standalone.entity.vo.UploadObjectVO;
import com.nms.swspkmas_standalone.entity.vo.UserVO;
import com.nms.swspkmas_standalone.response.CommonPage;
import org.springframework.web.multipart.MultipartFile;
 
/**
 * <p>
 * 考生表 服务类
 * </p>
 *
 * @author kzy
 * @since 2023-09-19 17:45:28
 */
public interface ExamineeService extends IService<Examinee> {
 
    /**
     * 新增考生
     * @param examineeVO
     */
    public void addExaminee(ExamineeVO examineeVO);
 
    /**
     * 更新考生信息
     * @param id
     * @param examineeVO
     */
    public void updateExaminee(Long id,ExamineeVO examineeVO);
 
    /**
     * 删除考生
     * @param id
     */
    public void deleteExaminee(Long id);
 
    /**
     * 考生列表
     * @param pageNum
     * @param pageSize
     * @return
     */
    public CommonPage examineeList(Integer pageNum,Integer pageSize,String name);
 
    /**
     * 上传考生头像
     * @param file
     * @return
     */
    public UploadObjectVO uploadIcon(MultipartFile file);
 
 
    /**
     * 根据身份证号获取考生
     * @param idNumber
     * @return
     */
    public Examinee getByIdNumber(String idNumber);
 
}