huangzhen
2023-09-28 cc98f525cbc17d4acdc095b50d382dbaf95c0b68
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
package com.gkhy.exam.coalmine.model.dto.resp;
 
import com.ruoyi.file.entity.AttachmentInfo;
import lombok.Data;
 
import java.io.Serializable;
import java.time.LocalDate;
import java.time.LocalDateTime;
import java.util.List;
 
/**
 * @author Mr.huang
 * @decription
 * @date 2023/9/12 13:14
 */
@Data
public class GetExaminerRespDTO implements Serializable {
 
    private Long id;
 
    //姓名
    private String name;
 
    //性别
    private String sex;
 
    //身份证
    private String code;
 
    //手机号
    private String mobilePhone;
 
    //职称
    private String jobTitle;
 
    //最高学历
    private String eduLevel;
 
    //过期时间
    private LocalDate expiredTime;
 
    //是否为煤矿:0为非,1是
    private Byte isCm;
 
    //描述
    private String description;
 
    private AttachmentInfo photoAttachment;
 
    private AttachmentInfo qaAttachment;
 
    private List<GetExaminerOperateTypesRespDTO>  operateTypes;
 
    //状态
    private String status;
 
}