yangys
2024-03-27 e48aa2ac8dea1be5db11c63edf0b912c4ad5ce65
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
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
package com.qianwen.smartman.modules.cps.dto;
 
import java.io.Serializable;
import java.util.Date;
 
/* loaded from: blade-api.jar:BOOT-INF/classes/org/springblade/modules/cps/dto/EmployeeDTO.class */
public class EmployeeDTO implements Serializable {
    private static final long serialVersionUID = 1;
    private Long id;
    private String code;
    private String name;
    private String email;
    private String tel;
    private Date hireDate;
    private String jobNumber;
    private String pinCode;
    private String organizationId;
    private String organizationName;
    private String deptId;
    private String postId;
    private String userId;
    private String roleId;
    private Integer status;
    private String avatar;
 
    public void setId(final Long id) {
        this.id = id;
    }
 
    public void setCode(final String code) {
        this.code = code;
    }
 
    public void setName(final String name) {
        this.name = name;
    }
 
    public void setEmail(final String email) {
        this.email = email;
    }
 
    public void setTel(final String tel) {
        this.tel = tel;
    }
 
    public void setHireDate(final Date hireDate) {
        this.hireDate = hireDate;
    }
 
    public void setJobNumber(final String jobNumber) {
        this.jobNumber = jobNumber;
    }
 
    public void setPinCode(final String pinCode) {
        this.pinCode = pinCode;
    }
 
    public void setOrganizationId(final String organizationId) {
        this.organizationId = organizationId;
    }
 
    public void setOrganizationName(final String organizationName) {
        this.organizationName = organizationName;
    }
 
    public void setDeptId(final String deptId) {
        this.deptId = deptId;
    }
 
    public void setPostId(final String postId) {
        this.postId = postId;
    }
 
    public void setUserId(final String userId) {
        this.userId = userId;
    }
 
    public void setRoleId(final String roleId) {
        this.roleId = roleId;
    }
 
    public void setStatus(final Integer status) {
        this.status = status;
    }
 
    public void setAvatar(final String avatar) {
        this.avatar = avatar;
    }
 
    public boolean equals(final Object o) {
        if (o == this) {
            return true;
        }
        if (o instanceof EmployeeDTO) {
            EmployeeDTO other = (EmployeeDTO) o;
            if (other.canEqual(this)) {
                Object this$id = getId();
                Object other$id = other.getId();
                if (this$id == null) {
                    if (other$id != null) {
                        return false;
                    }
                } else if (!this$id.equals(other$id)) {
                    return false;
                }
                Object this$status = getStatus();
                Object other$status = other.getStatus();
                if (this$status == null) {
                    if (other$status != null) {
                        return false;
                    }
                } else if (!this$status.equals(other$status)) {
                    return false;
                }
                Object this$code = getCode();
                Object other$code = other.getCode();
                if (this$code == null) {
                    if (other$code != null) {
                        return false;
                    }
                } else if (!this$code.equals(other$code)) {
                    return false;
                }
                Object this$name = getName();
                Object other$name = other.getName();
                if (this$name == null) {
                    if (other$name != null) {
                        return false;
                    }
                } else if (!this$name.equals(other$name)) {
                    return false;
                }
                Object this$email = getEmail();
                Object other$email = other.getEmail();
                if (this$email == null) {
                    if (other$email != null) {
                        return false;
                    }
                } else if (!this$email.equals(other$email)) {
                    return false;
                }
                Object this$tel = getTel();
                Object other$tel = other.getTel();
                if (this$tel == null) {
                    if (other$tel != null) {
                        return false;
                    }
                } else if (!this$tel.equals(other$tel)) {
                    return false;
                }
                Object this$hireDate = getHireDate();
                Object other$hireDate = other.getHireDate();
                if (this$hireDate == null) {
                    if (other$hireDate != null) {
                        return false;
                    }
                } else if (!this$hireDate.equals(other$hireDate)) {
                    return false;
                }
                Object this$jobNumber = getJobNumber();
                Object other$jobNumber = other.getJobNumber();
                if (this$jobNumber == null) {
                    if (other$jobNumber != null) {
                        return false;
                    }
                } else if (!this$jobNumber.equals(other$jobNumber)) {
                    return false;
                }
                Object this$pinCode = getPinCode();
                Object other$pinCode = other.getPinCode();
                if (this$pinCode == null) {
                    if (other$pinCode != null) {
                        return false;
                    }
                } else if (!this$pinCode.equals(other$pinCode)) {
                    return false;
                }
                Object this$organizationId = getOrganizationId();
                Object other$organizationId = other.getOrganizationId();
                if (this$organizationId == null) {
                    if (other$organizationId != null) {
                        return false;
                    }
                } else if (!this$organizationId.equals(other$organizationId)) {
                    return false;
                }
                Object this$organizationName = getOrganizationName();
                Object other$organizationName = other.getOrganizationName();
                if (this$organizationName == null) {
                    if (other$organizationName != null) {
                        return false;
                    }
                } else if (!this$organizationName.equals(other$organizationName)) {
                    return false;
                }
                Object this$deptId = getDeptId();
                Object other$deptId = other.getDeptId();
                if (this$deptId == null) {
                    if (other$deptId != null) {
                        return false;
                    }
                } else if (!this$deptId.equals(other$deptId)) {
                    return false;
                }
                Object this$postId = getPostId();
                Object other$postId = other.getPostId();
                if (this$postId == null) {
                    if (other$postId != null) {
                        return false;
                    }
                } else if (!this$postId.equals(other$postId)) {
                    return false;
                }
                Object this$userId = getUserId();
                Object other$userId = other.getUserId();
                if (this$userId == null) {
                    if (other$userId != null) {
                        return false;
                    }
                } else if (!this$userId.equals(other$userId)) {
                    return false;
                }
                Object this$roleId = getRoleId();
                Object other$roleId = other.getRoleId();
                if (this$roleId == null) {
                    if (other$roleId != null) {
                        return false;
                    }
                } else if (!this$roleId.equals(other$roleId)) {
                    return false;
                }
                Object this$avatar = getAvatar();
                Object other$avatar = other.getAvatar();
                return this$avatar == null ? other$avatar == null : this$avatar.equals(other$avatar);
            }
            return false;
        }
        return false;
    }
 
    protected boolean canEqual(final Object other) {
        return other instanceof EmployeeDTO;
    }
 
    public int hashCode() {
        Object $id = getId();
        int result = (1 * 59) + ($id == null ? 43 : $id.hashCode());
        Object $status = getStatus();
        int result2 = (result * 59) + ($status == null ? 43 : $status.hashCode());
        Object $code = getCode();
        int result3 = (result2 * 59) + ($code == null ? 43 : $code.hashCode());
        Object $name = getName();
        int result4 = (result3 * 59) + ($name == null ? 43 : $name.hashCode());
        Object $email = getEmail();
        int result5 = (result4 * 59) + ($email == null ? 43 : $email.hashCode());
        Object $tel = getTel();
        int result6 = (result5 * 59) + ($tel == null ? 43 : $tel.hashCode());
        Object $hireDate = getHireDate();
        int result7 = (result6 * 59) + ($hireDate == null ? 43 : $hireDate.hashCode());
        Object $jobNumber = getJobNumber();
        int result8 = (result7 * 59) + ($jobNumber == null ? 43 : $jobNumber.hashCode());
        Object $pinCode = getPinCode();
        int result9 = (result8 * 59) + ($pinCode == null ? 43 : $pinCode.hashCode());
        Object $organizationId = getOrganizationId();
        int result10 = (result9 * 59) + ($organizationId == null ? 43 : $organizationId.hashCode());
        Object $organizationName = getOrganizationName();
        int result11 = (result10 * 59) + ($organizationName == null ? 43 : $organizationName.hashCode());
        Object $deptId = getDeptId();
        int result12 = (result11 * 59) + ($deptId == null ? 43 : $deptId.hashCode());
        Object $postId = getPostId();
        int result13 = (result12 * 59) + ($postId == null ? 43 : $postId.hashCode());
        Object $userId = getUserId();
        int result14 = (result13 * 59) + ($userId == null ? 43 : $userId.hashCode());
        Object $roleId = getRoleId();
        int result15 = (result14 * 59) + ($roleId == null ? 43 : $roleId.hashCode());
        Object $avatar = getAvatar();
        return (result15 * 59) + ($avatar == null ? 43 : $avatar.hashCode());
    }
 
    public String toString() {
        return "EmployeeDTO(id=" + getId() + ", code=" + getCode() + ", name=" + getName() + ", email=" + getEmail() + ", tel=" + getTel() + ", hireDate=" + getHireDate() + ", jobNumber=" + getJobNumber() + ", pinCode=" + getPinCode() + ", organizationId=" + getOrganizationId() + ", organizationName=" + getOrganizationName() + ", deptId=" + getDeptId() + ", postId=" + getPostId() + ", userId=" + getUserId() + ", roleId=" + getRoleId() + ", status=" + getStatus() + ", avatar=" + getAvatar() + ")";
    }
 
    public Long getId() {
        return this.id;
    }
 
    public String getCode() {
        return this.code;
    }
 
    public String getName() {
        return this.name;
    }
 
    public String getEmail() {
        return this.email;
    }
 
    public String getTel() {
        return this.tel;
    }
 
    public Date getHireDate() {
        return this.hireDate;
    }
 
    public String getJobNumber() {
        return this.jobNumber;
    }
 
    public String getPinCode() {
        return this.pinCode;
    }
 
    public String getOrganizationId() {
        return this.organizationId;
    }
 
    public String getOrganizationName() {
        return this.organizationName;
    }
 
    public String getDeptId() {
        return this.deptId;
    }
 
    public String getPostId() {
        return this.postId;
    }
 
    public String getUserId() {
        return this.userId;
    }
 
    public String getRoleId() {
        return this.roleId;
    }
 
    public Integer getStatus() {
        return this.status;
    }
 
    public String getAvatar() {
        return this.avatar;
    }
}