yangys
2024-04-04 ed4a5236bab800094be4a8378f5098eebe3de6ac
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
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
package com.qianwen.smartman.modules.sync.entity;
 
import java.util.List;
 
/* loaded from: blade-api.jar:BOOT-INF/classes/org/springblade/modules/sync/entity/DingOriUser.class */
public class DingOriUser {
    private String userid;
    private String unionid;
    private String name;
    private String avatar;
    private String state_code;
    private String mobile;
    private Boolean hide_mobile;
    private String telephone;
    private String job_number;
    private String title;
    private String email;
    private String org_email;
    private String work_place;
    private String remark;
    private List<Long> dept_id_list;
    private Long dept_order;
    private String extension;
    private Long hired_date;
    private Boolean active;
    private Boolean admin;
    private Boolean boss;
    private Boolean leader;
    private Boolean exclusive_account;
 
    public void setUserid(final String userid) {
        this.userid = userid;
    }
 
    public void setUnionid(final String unionid) {
        this.unionid = unionid;
    }
 
    public void setName(final String name) {
        this.name = name;
    }
 
    public void setAvatar(final String avatar) {
        this.avatar = avatar;
    }
 
    public void setState_code(final String state_code) {
        this.state_code = state_code;
    }
 
    public void setMobile(final String mobile) {
        this.mobile = mobile;
    }
 
    public void setHide_mobile(final Boolean hide_mobile) {
        this.hide_mobile = hide_mobile;
    }
 
    public void setTelephone(final String telephone) {
        this.telephone = telephone;
    }
 
    public void setJob_number(final String job_number) {
        this.job_number = job_number;
    }
 
    public void setTitle(final String title) {
        this.title = title;
    }
 
    public void setEmail(final String email) {
        this.email = email;
    }
 
    public void setOrg_email(final String org_email) {
        this.org_email = org_email;
    }
 
    public void setWork_place(final String work_place) {
        this.work_place = work_place;
    }
 
    public void setRemark(final String remark) {
        this.remark = remark;
    }
 
    public void setDept_id_list(final List<Long> dept_id_list) {
        this.dept_id_list = dept_id_list;
    }
 
    public void setDept_order(final Long dept_order) {
        this.dept_order = dept_order;
    }
 
    public void setExtension(final String extension) {
        this.extension = extension;
    }
 
    public void setHired_date(final Long hired_date) {
        this.hired_date = hired_date;
    }
 
    public void setActive(final Boolean active) {
        this.active = active;
    }
 
    public void setAdmin(final Boolean admin) {
        this.admin = admin;
    }
 
    public void setBoss(final Boolean boss) {
        this.boss = boss;
    }
 
    public void setLeader(final Boolean leader) {
        this.leader = leader;
    }
 
    public void setExclusive_account(final Boolean exclusive_account) {
        this.exclusive_account = exclusive_account;
    }
 
    public boolean equals(final Object o) {
        if (o == this) {
            return true;
        }
        if (o instanceof DingOriUser) {
            DingOriUser other = (DingOriUser) o;
            if (other.canEqual(this)) {
                Object this$hide_mobile = getHide_mobile();
                Object other$hide_mobile = other.getHide_mobile();
                if (this$hide_mobile == null) {
                    if (other$hide_mobile != null) {
                        return false;
                    }
                } else if (!this$hide_mobile.equals(other$hide_mobile)) {
                    return false;
                }
                Object this$dept_order = getDept_order();
                Object other$dept_order = other.getDept_order();
                if (this$dept_order == null) {
                    if (other$dept_order != null) {
                        return false;
                    }
                } else if (!this$dept_order.equals(other$dept_order)) {
                    return false;
                }
                Object this$hired_date = getHired_date();
                Object other$hired_date = other.getHired_date();
                if (this$hired_date == null) {
                    if (other$hired_date != null) {
                        return false;
                    }
                } else if (!this$hired_date.equals(other$hired_date)) {
                    return false;
                }
                Object this$active = getActive();
                Object other$active = other.getActive();
                if (this$active == null) {
                    if (other$active != null) {
                        return false;
                    }
                } else if (!this$active.equals(other$active)) {
                    return false;
                }
                Object this$admin = getAdmin();
                Object other$admin = other.getAdmin();
                if (this$admin == null) {
                    if (other$admin != null) {
                        return false;
                    }
                } else if (!this$admin.equals(other$admin)) {
                    return false;
                }
                Object this$boss = getBoss();
                Object other$boss = other.getBoss();
                if (this$boss == null) {
                    if (other$boss != null) {
                        return false;
                    }
                } else if (!this$boss.equals(other$boss)) {
                    return false;
                }
                Object this$leader = getLeader();
                Object other$leader = other.getLeader();
                if (this$leader == null) {
                    if (other$leader != null) {
                        return false;
                    }
                } else if (!this$leader.equals(other$leader)) {
                    return false;
                }
                Object this$exclusive_account = getExclusive_account();
                Object other$exclusive_account = other.getExclusive_account();
                if (this$exclusive_account == null) {
                    if (other$exclusive_account != null) {
                        return false;
                    }
                } else if (!this$exclusive_account.equals(other$exclusive_account)) {
                    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$unionid = getUnionid();
                Object other$unionid = other.getUnionid();
                if (this$unionid == null) {
                    if (other$unionid != null) {
                        return false;
                    }
                } else if (!this$unionid.equals(other$unionid)) {
                    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$avatar = getAvatar();
                Object other$avatar = other.getAvatar();
                if (this$avatar == null) {
                    if (other$avatar != null) {
                        return false;
                    }
                } else if (!this$avatar.equals(other$avatar)) {
                    return false;
                }
                Object this$state_code = getState_code();
                Object other$state_code = other.getState_code();
                if (this$state_code == null) {
                    if (other$state_code != null) {
                        return false;
                    }
                } else if (!this$state_code.equals(other$state_code)) {
                    return false;
                }
                Object this$mobile = getMobile();
                Object other$mobile = other.getMobile();
                if (this$mobile == null) {
                    if (other$mobile != null) {
                        return false;
                    }
                } else if (!this$mobile.equals(other$mobile)) {
                    return false;
                }
                Object this$telephone = getTelephone();
                Object other$telephone = other.getTelephone();
                if (this$telephone == null) {
                    if (other$telephone != null) {
                        return false;
                    }
                } else if (!this$telephone.equals(other$telephone)) {
                    return false;
                }
                Object this$job_number = getJob_number();
                Object other$job_number = other.getJob_number();
                if (this$job_number == null) {
                    if (other$job_number != null) {
                        return false;
                    }
                } else if (!this$job_number.equals(other$job_number)) {
                    return false;
                }
                Object this$title = getTitle();
                Object other$title = other.getTitle();
                if (this$title == null) {
                    if (other$title != null) {
                        return false;
                    }
                } else if (!this$title.equals(other$title)) {
                    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$org_email = getOrg_email();
                Object other$org_email = other.getOrg_email();
                if (this$org_email == null) {
                    if (other$org_email != null) {
                        return false;
                    }
                } else if (!this$org_email.equals(other$org_email)) {
                    return false;
                }
                Object this$work_place = getWork_place();
                Object other$work_place = other.getWork_place();
                if (this$work_place == null) {
                    if (other$work_place != null) {
                        return false;
                    }
                } else if (!this$work_place.equals(other$work_place)) {
                    return false;
                }
                Object this$remark = getRemark();
                Object other$remark = other.getRemark();
                if (this$remark == null) {
                    if (other$remark != null) {
                        return false;
                    }
                } else if (!this$remark.equals(other$remark)) {
                    return false;
                }
                Object this$dept_id_list = getDept_id_list();
                Object other$dept_id_list = other.getDept_id_list();
                if (this$dept_id_list == null) {
                    if (other$dept_id_list != null) {
                        return false;
                    }
                } else if (!this$dept_id_list.equals(other$dept_id_list)) {
                    return false;
                }
                Object this$extension = getExtension();
                Object other$extension = other.getExtension();
                return this$extension == null ? other$extension == null : this$extension.equals(other$extension);
            }
            return false;
        }
        return false;
    }
 
    protected boolean canEqual(final Object other) {
        return other instanceof DingOriUser;
    }
 
    public int hashCode() {
        Object $hide_mobile = getHide_mobile();
        int result = (1 * 59) + ($hide_mobile == null ? 43 : $hide_mobile.hashCode());
        Object $dept_order = getDept_order();
        int result2 = (result * 59) + ($dept_order == null ? 43 : $dept_order.hashCode());
        Object $hired_date = getHired_date();
        int result3 = (result2 * 59) + ($hired_date == null ? 43 : $hired_date.hashCode());
        Object $active = getActive();
        int result4 = (result3 * 59) + ($active == null ? 43 : $active.hashCode());
        Object $admin = getAdmin();
        int result5 = (result4 * 59) + ($admin == null ? 43 : $admin.hashCode());
        Object $boss = getBoss();
        int result6 = (result5 * 59) + ($boss == null ? 43 : $boss.hashCode());
        Object $leader = getLeader();
        int result7 = (result6 * 59) + ($leader == null ? 43 : $leader.hashCode());
        Object $exclusive_account = getExclusive_account();
        int result8 = (result7 * 59) + ($exclusive_account == null ? 43 : $exclusive_account.hashCode());
        Object $userid = getUserid();
        int result9 = (result8 * 59) + ($userid == null ? 43 : $userid.hashCode());
        Object $unionid = getUnionid();
        int result10 = (result9 * 59) + ($unionid == null ? 43 : $unionid.hashCode());
        Object $name = getName();
        int result11 = (result10 * 59) + ($name == null ? 43 : $name.hashCode());
        Object $avatar = getAvatar();
        int result12 = (result11 * 59) + ($avatar == null ? 43 : $avatar.hashCode());
        Object $state_code = getState_code();
        int result13 = (result12 * 59) + ($state_code == null ? 43 : $state_code.hashCode());
        Object $mobile = getMobile();
        int result14 = (result13 * 59) + ($mobile == null ? 43 : $mobile.hashCode());
        Object $telephone = getTelephone();
        int result15 = (result14 * 59) + ($telephone == null ? 43 : $telephone.hashCode());
        Object $job_number = getJob_number();
        int result16 = (result15 * 59) + ($job_number == null ? 43 : $job_number.hashCode());
        Object $title = getTitle();
        int result17 = (result16 * 59) + ($title == null ? 43 : $title.hashCode());
        Object $email = getEmail();
        int result18 = (result17 * 59) + ($email == null ? 43 : $email.hashCode());
        Object $org_email = getOrg_email();
        int result19 = (result18 * 59) + ($org_email == null ? 43 : $org_email.hashCode());
        Object $work_place = getWork_place();
        int result20 = (result19 * 59) + ($work_place == null ? 43 : $work_place.hashCode());
        Object $remark = getRemark();
        int result21 = (result20 * 59) + ($remark == null ? 43 : $remark.hashCode());
        Object $dept_id_list = getDept_id_list();
        int result22 = (result21 * 59) + ($dept_id_list == null ? 43 : $dept_id_list.hashCode());
        Object $extension = getExtension();
        return (result22 * 59) + ($extension == null ? 43 : $extension.hashCode());
    }
 
    public String toString() {
        return "DingOriUser(userid=" + getUserid() + ", unionid=" + getUnionid() + ", name=" + getName() + ", avatar=" + getAvatar() + ", state_code=" + getState_code() + ", mobile=" + getMobile() + ", hide_mobile=" + getHide_mobile() + ", telephone=" + getTelephone() + ", job_number=" + getJob_number() + ", title=" + getTitle() + ", email=" + getEmail() + ", org_email=" + getOrg_email() + ", work_place=" + getWork_place() + ", remark=" + getRemark() + ", dept_id_list=" + getDept_id_list() + ", dept_order=" + getDept_order() + ", extension=" + getExtension() + ", hired_date=" + getHired_date() + ", active=" + getActive() + ", admin=" + getAdmin() + ", boss=" + getBoss() + ", leader=" + getLeader() + ", exclusive_account=" + getExclusive_account() + ")";
    }
 
    public String getUserid() {
        return this.userid;
    }
 
    public String getUnionid() {
        return this.unionid;
    }
 
    public String getName() {
        return this.name;
    }
 
    public String getAvatar() {
        return this.avatar;
    }
 
    public String getState_code() {
        return this.state_code;
    }
 
    public String getMobile() {
        return this.mobile;
    }
 
    public Boolean getHide_mobile() {
        return this.hide_mobile;
    }
 
    public String getTelephone() {
        return this.telephone;
    }
 
    public String getJob_number() {
        return this.job_number;
    }
 
    public String getTitle() {
        return this.title;
    }
 
    public String getEmail() {
        return this.email;
    }
 
    public String getOrg_email() {
        return this.org_email;
    }
 
    public String getWork_place() {
        return this.work_place;
    }
 
    public String getRemark() {
        return this.remark;
    }
 
    public List<Long> getDept_id_list() {
        return this.dept_id_list;
    }
 
    public Long getDept_order() {
        return this.dept_order;
    }
 
    public String getExtension() {
        return this.extension;
    }
 
    public Long getHired_date() {
        return this.hired_date;
    }
 
    public Boolean getActive() {
        return this.active;
    }
 
    public Boolean getAdmin() {
        return this.admin;
    }
 
    public Boolean getBoss() {
        return this.boss;
    }
 
    public Boolean getLeader() {
        return this.leader;
    }
 
    public Boolean getExclusive_account() {
        return this.exclusive_account;
    }
}