leutu
2024-05-08 543e4eb01ca210b20876e8139cb3d0403d7d065c
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
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
package com.skyline.electricity.entity;
 
import java.sql.*;
 
public class SysUser
{
    private String id;
    private String companyId;
    private String orgId;
    private String loginName;
    private String no;
    private String name;
    private String email;
    private String phone;
    private String mobile;
    private String userType;
    private String photo;
    private String loginIp;
    private Date loginDate;
    private String loginFlag;
    private String createBy;
    private Date createDate;
    private String updateBy;
    private Date updateDate;
    private String remarks;
    private String delFlag;
    private int sort;
    private String posCode;
    private String token;
    private int partyCost;
    private String gender;
    private String birthday;
    private String education;
    private String residence;
    private String nation;
    
    public String getId() {
        return this.id;
    }
    
    public String getCompanyId() {
        return this.companyId;
    }
    
    public String getOrgId() {
        return this.orgId;
    }
    
    public String getLoginName() {
        return this.loginName;
    }
    
    public String getNo() {
        return this.no;
    }
    
    public String getName() {
        return this.name;
    }
    
    public String getEmail() {
        return this.email;
    }
    
    public String getPhone() {
        return this.phone;
    }
    
    public String getMobile() {
        return this.mobile;
    }
    
    public String getUserType() {
        return this.userType;
    }
    
    public String getPhoto() {
        return this.photo;
    }
    
    public String getLoginIp() {
        return this.loginIp;
    }
    
    public Date getLoginDate() {
        return this.loginDate;
    }
    
    public String getLoginFlag() {
        return this.loginFlag;
    }
    
    public String getCreateBy() {
        return this.createBy;
    }
    
    public Date getCreateDate() {
        return this.createDate;
    }
    
    public String getUpdateBy() {
        return this.updateBy;
    }
    
    public Date getUpdateDate() {
        return this.updateDate;
    }
    
    public String getRemarks() {
        return this.remarks;
    }
    
    public String getDelFlag() {
        return this.delFlag;
    }
    
    public int getSort() {
        return this.sort;
    }
    
    public String getPosCode() {
        return this.posCode;
    }
    
    public String getToken() {
        return this.token;
    }
    
    public int getPartyCost() {
        return this.partyCost;
    }
    
    public String getGender() {
        return this.gender;
    }
    
    public String getBirthday() {
        return this.birthday;
    }
    
    public String getEducation() {
        return this.education;
    }
    
    public String getResidence() {
        return this.residence;
    }
    
    public String getNation() {
        return this.nation;
    }
    
    public void setId(final String id) {
        this.id = id;
    }
    
    public void setCompanyId(final String companyId) {
        this.companyId = companyId;
    }
    
    public void setOrgId(final String orgId) {
        this.orgId = orgId;
    }
    
    public void setLoginName(final String loginName) {
        this.loginName = loginName;
    }
    
    public void setNo(final String no) {
        this.no = no;
    }
    
    public void setName(final String name) {
        this.name = name;
    }
    
    public void setEmail(final String email) {
        this.email = email;
    }
    
    public void setPhone(final String phone) {
        this.phone = phone;
    }
    
    public void setMobile(final String mobile) {
        this.mobile = mobile;
    }
    
    public void setUserType(final String userType) {
        this.userType = userType;
    }
    
    public void setPhoto(final String photo) {
        this.photo = photo;
    }
    
    public void setLoginIp(final String loginIp) {
        this.loginIp = loginIp;
    }
    
    public void setLoginDate(final Date loginDate) {
        this.loginDate = loginDate;
    }
    
    public void setLoginFlag(final String loginFlag) {
        this.loginFlag = loginFlag;
    }
    
    public void setCreateBy(final String createBy) {
        this.createBy = createBy;
    }
    
    public void setCreateDate(final Date createDate) {
        this.createDate = createDate;
    }
    
    public void setUpdateBy(final String updateBy) {
        this.updateBy = updateBy;
    }
    
    public void setUpdateDate(final Date updateDate) {
        this.updateDate = updateDate;
    }
    
    public void setRemarks(final String remarks) {
        this.remarks = remarks;
    }
    
    public void setDelFlag(final String delFlag) {
        this.delFlag = delFlag;
    }
    
    public void setSort(final int sort) {
        this.sort = sort;
    }
    
    public void setPosCode(final String posCode) {
        this.posCode = posCode;
    }
    
    public void setToken(final String token) {
        this.token = token;
    }
    
    public void setPartyCost(final int partyCost) {
        this.partyCost = partyCost;
    }
    
    public void setGender(final String gender) {
        this.gender = gender;
    }
    
    public void setBirthday(final String birthday) {
        this.birthday = birthday;
    }
    
    public void setEducation(final String education) {
        this.education = education;
    }
    
    public void setResidence(final String residence) {
        this.residence = residence;
    }
    
    public void setNation(final String nation) {
        this.nation = nation;
    }
    
    @Override
    public boolean equals(final Object o) {
        if (o == this) {
            return true;
        }
        if (!(o instanceof SysUser)) {
            return false;
        }
        final SysUser other = (SysUser)o;
        if (!other.canEqual(this)) {
            return false;
        }
        final Object this$id = this.getId();
        final Object other$id = other.getId();
        Label_0065: {
            if (this$id == null) {
                if (other$id == null) {
                    break Label_0065;
                }
            }
            else if (this$id.equals(other$id)) {
                break Label_0065;
            }
            return false;
        }
        final Object this$companyId = this.getCompanyId();
        final Object other$companyId = other.getCompanyId();
        Label_0102: {
            if (this$companyId == null) {
                if (other$companyId == null) {
                    break Label_0102;
                }
            }
            else if (this$companyId.equals(other$companyId)) {
                break Label_0102;
            }
            return false;
        }
        final Object this$orgId = this.getOrgId();
        final Object other$orgId = other.getOrgId();
        Label_0139: {
            if (this$orgId == null) {
                if (other$orgId == null) {
                    break Label_0139;
                }
            }
            else if (this$orgId.equals(other$orgId)) {
                break Label_0139;
            }
            return false;
        }
        final Object this$loginName = this.getLoginName();
        final Object other$loginName = other.getLoginName();
        Label_0176: {
            if (this$loginName == null) {
                if (other$loginName == null) {
                    break Label_0176;
                }
            }
            else if (this$loginName.equals(other$loginName)) {
                break Label_0176;
            }
            return false;
        }
        final Object this$no = this.getNo();
        final Object other$no = other.getNo();
        Label_0213: {
            if (this$no == null) {
                if (other$no == null) {
                    break Label_0213;
                }
            }
            else if (this$no.equals(other$no)) {
                break Label_0213;
            }
            return false;
        }
        final Object this$name = this.getName();
        final Object other$name = other.getName();
        Label_0250: {
            if (this$name == null) {
                if (other$name == null) {
                    break Label_0250;
                }
            }
            else if (this$name.equals(other$name)) {
                break Label_0250;
            }
            return false;
        }
        final Object this$email = this.getEmail();
        final Object other$email = other.getEmail();
        Label_0287: {
            if (this$email == null) {
                if (other$email == null) {
                    break Label_0287;
                }
            }
            else if (this$email.equals(other$email)) {
                break Label_0287;
            }
            return false;
        }
        final Object this$phone = this.getPhone();
        final Object other$phone = other.getPhone();
        Label_0324: {
            if (this$phone == null) {
                if (other$phone == null) {
                    break Label_0324;
                }
            }
            else if (this$phone.equals(other$phone)) {
                break Label_0324;
            }
            return false;
        }
        final Object this$mobile = this.getMobile();
        final Object other$mobile = other.getMobile();
        Label_0361: {
            if (this$mobile == null) {
                if (other$mobile == null) {
                    break Label_0361;
                }
            }
            else if (this$mobile.equals(other$mobile)) {
                break Label_0361;
            }
            return false;
        }
        final Object this$userType = this.getUserType();
        final Object other$userType = other.getUserType();
        Label_0398: {
            if (this$userType == null) {
                if (other$userType == null) {
                    break Label_0398;
                }
            }
            else if (this$userType.equals(other$userType)) {
                break Label_0398;
            }
            return false;
        }
        final Object this$photo = this.getPhoto();
        final Object other$photo = other.getPhoto();
        Label_0435: {
            if (this$photo == null) {
                if (other$photo == null) {
                    break Label_0435;
                }
            }
            else if (this$photo.equals(other$photo)) {
                break Label_0435;
            }
            return false;
        }
        final Object this$loginIp = this.getLoginIp();
        final Object other$loginIp = other.getLoginIp();
        Label_0472: {
            if (this$loginIp == null) {
                if (other$loginIp == null) {
                    break Label_0472;
                }
            }
            else if (this$loginIp.equals(other$loginIp)) {
                break Label_0472;
            }
            return false;
        }
        final Object this$loginDate = this.getLoginDate();
        final Object other$loginDate = other.getLoginDate();
        Label_0509: {
            if (this$loginDate == null) {
                if (other$loginDate == null) {
                    break Label_0509;
                }
            }
            else if (this$loginDate.equals(other$loginDate)) {
                break Label_0509;
            }
            return false;
        }
        final Object this$loginFlag = this.getLoginFlag();
        final Object other$loginFlag = other.getLoginFlag();
        Label_0546: {
            if (this$loginFlag == null) {
                if (other$loginFlag == null) {
                    break Label_0546;
                }
            }
            else if (this$loginFlag.equals(other$loginFlag)) {
                break Label_0546;
            }
            return false;
        }
        final Object this$createBy = this.getCreateBy();
        final Object other$createBy = other.getCreateBy();
        Label_0583: {
            if (this$createBy == null) {
                if (other$createBy == null) {
                    break Label_0583;
                }
            }
            else if (this$createBy.equals(other$createBy)) {
                break Label_0583;
            }
            return false;
        }
        final Object this$createDate = this.getCreateDate();
        final Object other$createDate = other.getCreateDate();
        Label_0620: {
            if (this$createDate == null) {
                if (other$createDate == null) {
                    break Label_0620;
                }
            }
            else if (this$createDate.equals(other$createDate)) {
                break Label_0620;
            }
            return false;
        }
        final Object this$updateBy = this.getUpdateBy();
        final Object other$updateBy = other.getUpdateBy();
        Label_0657: {
            if (this$updateBy == null) {
                if (other$updateBy == null) {
                    break Label_0657;
                }
            }
            else if (this$updateBy.equals(other$updateBy)) {
                break Label_0657;
            }
            return false;
        }
        final Object this$updateDate = this.getUpdateDate();
        final Object other$updateDate = other.getUpdateDate();
        Label_0694: {
            if (this$updateDate == null) {
                if (other$updateDate == null) {
                    break Label_0694;
                }
            }
            else if (this$updateDate.equals(other$updateDate)) {
                break Label_0694;
            }
            return false;
        }
        final Object this$remarks = this.getRemarks();
        final Object other$remarks = other.getRemarks();
        Label_0731: {
            if (this$remarks == null) {
                if (other$remarks == null) {
                    break Label_0731;
                }
            }
            else if (this$remarks.equals(other$remarks)) {
                break Label_0731;
            }
            return false;
        }
        final Object this$delFlag = this.getDelFlag();
        final Object other$delFlag = other.getDelFlag();
        Label_0768: {
            if (this$delFlag == null) {
                if (other$delFlag == null) {
                    break Label_0768;
                }
            }
            else if (this$delFlag.equals(other$delFlag)) {
                break Label_0768;
            }
            return false;
        }
        if (this.getSort() != other.getSort()) {
            return false;
        }
        final Object this$posCode = this.getPosCode();
        final Object other$posCode = other.getPosCode();
        Label_0818: {
            if (this$posCode == null) {
                if (other$posCode == null) {
                    break Label_0818;
                }
            }
            else if (this$posCode.equals(other$posCode)) {
                break Label_0818;
            }
            return false;
        }
        final Object this$token = this.getToken();
        final Object other$token = other.getToken();
        Label_0855: {
            if (this$token == null) {
                if (other$token == null) {
                    break Label_0855;
                }
            }
            else if (this$token.equals(other$token)) {
                break Label_0855;
            }
            return false;
        }
        if (this.getPartyCost() != other.getPartyCost()) {
            return false;
        }
        final Object this$gender = this.getGender();
        final Object other$gender = other.getGender();
        Label_0905: {
            if (this$gender == null) {
                if (other$gender == null) {
                    break Label_0905;
                }
            }
            else if (this$gender.equals(other$gender)) {
                break Label_0905;
            }
            return false;
        }
        final Object this$birthday = this.getBirthday();
        final Object other$birthday = other.getBirthday();
        Label_0942: {
            if (this$birthday == null) {
                if (other$birthday == null) {
                    break Label_0942;
                }
            }
            else if (this$birthday.equals(other$birthday)) {
                break Label_0942;
            }
            return false;
        }
        final Object this$education = this.getEducation();
        final Object other$education = other.getEducation();
        Label_0979: {
            if (this$education == null) {
                if (other$education == null) {
                    break Label_0979;
                }
            }
            else if (this$education.equals(other$education)) {
                break Label_0979;
            }
            return false;
        }
        final Object this$residence = this.getResidence();
        final Object other$residence = other.getResidence();
        Label_1016: {
            if (this$residence == null) {
                if (other$residence == null) {
                    break Label_1016;
                }
            }
            else if (this$residence.equals(other$residence)) {
                break Label_1016;
            }
            return false;
        }
        final Object this$nation = this.getNation();
        final Object other$nation = other.getNation();
        if (this$nation == null) {
            if (other$nation == null) {
                return true;
            }
        }
        else if (this$nation.equals(other$nation)) {
            return true;
        }
        return false;
    }
    
    protected boolean canEqual(final Object other) {
        return other instanceof SysUser;
    }
    
    @Override
    public int hashCode() {
        final int PRIME = 59;
        int result = 1;
        final Object $id = this.getId();
        result = result * 59 + (($id == null) ? 43 : $id.hashCode());
        final Object $companyId = this.getCompanyId();
        result = result * 59 + (($companyId == null) ? 43 : $companyId.hashCode());
        final Object $orgId = this.getOrgId();
        result = result * 59 + (($orgId == null) ? 43 : $orgId.hashCode());
        final Object $loginName = this.getLoginName();
        result = result * 59 + (($loginName == null) ? 43 : $loginName.hashCode());
        final Object $no = this.getNo();
        result = result * 59 + (($no == null) ? 43 : $no.hashCode());
        final Object $name = this.getName();
        result = result * 59 + (($name == null) ? 43 : $name.hashCode());
        final Object $email = this.getEmail();
        result = result * 59 + (($email == null) ? 43 : $email.hashCode());
        final Object $phone = this.getPhone();
        result = result * 59 + (($phone == null) ? 43 : $phone.hashCode());
        final Object $mobile = this.getMobile();
        result = result * 59 + (($mobile == null) ? 43 : $mobile.hashCode());
        final Object $userType = this.getUserType();
        result = result * 59 + (($userType == null) ? 43 : $userType.hashCode());
        final Object $photo = this.getPhoto();
        result = result * 59 + (($photo == null) ? 43 : $photo.hashCode());
        final Object $loginIp = this.getLoginIp();
        result = result * 59 + (($loginIp == null) ? 43 : $loginIp.hashCode());
        final Object $loginDate = this.getLoginDate();
        result = result * 59 + (($loginDate == null) ? 43 : $loginDate.hashCode());
        final Object $loginFlag = this.getLoginFlag();
        result = result * 59 + (($loginFlag == null) ? 43 : $loginFlag.hashCode());
        final Object $createBy = this.getCreateBy();
        result = result * 59 + (($createBy == null) ? 43 : $createBy.hashCode());
        final Object $createDate = this.getCreateDate();
        result = result * 59 + (($createDate == null) ? 43 : $createDate.hashCode());
        final Object $updateBy = this.getUpdateBy();
        result = result * 59 + (($updateBy == null) ? 43 : $updateBy.hashCode());
        final Object $updateDate = this.getUpdateDate();
        result = result * 59 + (($updateDate == null) ? 43 : $updateDate.hashCode());
        final Object $remarks = this.getRemarks();
        result = result * 59 + (($remarks == null) ? 43 : $remarks.hashCode());
        final Object $delFlag = this.getDelFlag();
        result = result * 59 + (($delFlag == null) ? 43 : $delFlag.hashCode());
        result = result * 59 + this.getSort();
        final Object $posCode = this.getPosCode();
        result = result * 59 + (($posCode == null) ? 43 : $posCode.hashCode());
        final Object $token = this.getToken();
        result = result * 59 + (($token == null) ? 43 : $token.hashCode());
        result = result * 59 + this.getPartyCost();
        final Object $gender = this.getGender();
        result = result * 59 + (($gender == null) ? 43 : $gender.hashCode());
        final Object $birthday = this.getBirthday();
        result = result * 59 + (($birthday == null) ? 43 : $birthday.hashCode());
        final Object $education = this.getEducation();
        result = result * 59 + (($education == null) ? 43 : $education.hashCode());
        final Object $residence = this.getResidence();
        result = result * 59 + (($residence == null) ? 43 : $residence.hashCode());
        final Object $nation = this.getNation();
        result = result * 59 + (($nation == null) ? 43 : $nation.hashCode());
        return result;
    }
    
    @Override
    public String toString() {
        return "SysUser(id=" + this.getId() + ", companyId=" + this.getCompanyId() + ", orgId=" + this.getOrgId() + ", loginName=" + this.getLoginName() + ", no=" + this.getNo() + ", name=" + this.getName() + ", email=" + this.getEmail() + ", phone=" + this.getPhone() + ", mobile=" + this.getMobile() + ", userType=" + this.getUserType() + ", photo=" + this.getPhoto() + ", loginIp=" + this.getLoginIp() + ", loginDate=" + this.getLoginDate() + ", loginFlag=" + this.getLoginFlag() + ", createBy=" + this.getCreateBy() + ", createDate=" + this.getCreateDate() + ", updateBy=" + this.getUpdateBy() + ", updateDate=" + this.getUpdateDate() + ", remarks=" + this.getRemarks() + ", delFlag=" + this.getDelFlag() + ", sort=" + this.getSort() + ", posCode=" + this.getPosCode() + ", token=" + this.getToken() + ", partyCost=" + this.getPartyCost() + ", gender=" + this.getGender() + ", birthday=" + this.getBirthday() + ", education=" + this.getEducation() + ", residence=" + this.getResidence() + ", nation=" + this.getNation() + ")";
    }
}