heheng
2025-01-13 a27162cb82ef0cabf9b43cbfd1f3eb8c177d1e14
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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
package com.gkhy.labRiskManage.api.controller.basic.dto.respDto;
 
import java.time.LocalDateTime;
 
/**
 * 基础实验人员
 */
public class BasicExperimentPersonListRespDTO {
 
    private Long id;
    /**
     * 人员
     */
    private String personName;
    /**
     * 年龄
     */
    private Integer personAge;
    /**
     * 1-男;2-女
     */
    private Byte personGender;
    /**
     * 专业
     */
    private String personMajor;
    /**
     * 部门名称(与基础部门无关)
     */
    private String depName;
    /**
     * 相关资质
     */
    private String aptitude;
    /**
     * 培训情况:1-已完成当期安全培训;2-未完成当期安全培训
     */
    private Byte training;
    /**
     * 手机号
     */
    private Long phone;
    /**
     * 头像
     */
    private String image;
 
 
    public Long getId() {
        return id;
    }
 
    public void setId(Long id) {
        this.id = id;
    }
 
    public Long getPhone() {
        return phone;
    }
 
    public void setPhone(Long phone) {
        this.phone = phone;
    }
 
    public String getPersonName() {
        return personName;
    }
 
    public void setPersonName(String personName) {
        this.personName = personName;
    }
 
    public Integer getPersonAge() {
        return personAge;
    }
 
    public void setPersonAge(Integer personAge) {
        this.personAge = personAge;
    }
 
    public Byte getPersonGender() {
        return personGender;
    }
 
    public void setPersonGender(Byte personGender) {
        this.personGender = personGender;
    }
 
    public String getPersonMajor() {
        return personMajor;
    }
 
    public void setPersonMajor(String personMajor) {
        this.personMajor = personMajor;
    }
 
    public String getDepName() {
        return depName;
    }
 
    public void setDepName(String depName) {
        this.depName = depName;
    }
 
    public String getAptitude() {
        return aptitude;
    }
 
    public void setAptitude(String aptitude) {
        this.aptitude = aptitude;
    }
 
    public Byte getTraining() {
        return training;
    }
 
    public void setTraining(Byte training) {
        this.training = training;
    }
 
    public String getImage() {
        return image;
    }
 
    public void setImage(String image) {
        this.image = image;
    }
}