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
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
package com.vci.ubcs.code.vo.webserviceModel.person;
 
public class PersonMasterData {
 
    /***
     * 数据在此系统中唯一标识
     */
    private String id;
 
    /***
     * 员工编码(企业编码)
     */
    private String lm_code;
 
    /**
     * 集团员工编号
     */
    private String group_code;
 
    /***
     * 员工姓名
     */
    private String name;
 
    /**
     * 主数据编码
     */
    private String mdm_code;
 
    /***
     *0:正常,1数据被删除,默认为0;
     */
    private int dr;
 
    /***
     * 行政区域化
     */
    private String admin_division;
 
    /***
     * 行政区域化号码
     */
    private String admin_division_code;
 
    /**
     * 出生日期(yyyy-MM-dd)
     */
    private String birthday;
 
    /**
     * 出生地
     */
    private String birthplace;
 
    /***
     * 籍贯
     */
    private String citizenship;
 
    /**
     * 国家/地区
     */
    private String country;
 
    /***
     * 部门
     */
    private String dept_type;
 
    /***
     * 部门名称
     */
    private String dept_name;
 
    /***
     * 学历
     */
    private String education;
 
    /***
     * 任职单位编码
     */
    private String employer_code;
 
    /***
     * 用工形式
     */
    private String employment_form;
 
    /**
     * 身份证编号
     */
    private String id_number;
 
    /***
     * 证件类型
     */
    private String id_type;
 
    /***
     * 是否主职
     */
    private String is_keyposion;
 
    /**
     * 婚姻状况
     */
    private String marital_status;
 
    /**
     * 手机号码
     */
    private String mobile_phone;
 
    /***
     * 民族
     */
    private String nationality;
 
    /**
     * 办公电话
     */
    private String office_telephone;
 
    /***
     *外网邮箱
     */
    private String outer_email;
 
    /***
     *上级门编码
     */
    private String parent_dept_code;
 
    /***
     *上级门名称
     */
    private String parent_dept_name;
 
    /***
     *政治面貌
     */
    private String politiccountenance;
 
    /***
     * 岗位
     */
    private String position;
 
    /***
     * 职称
     */
    private String work_title;
 
    /***
     * 人员类别
     */
    private String worker_category;
 
    /**
     * 人员类别编码
     */
    private String worker_category_code;
 
    /***
     * 职务
     */
    private String worker_duty;
 
    /***
     * 工作邮箱
     */
    private String worker_email;
 
    /***
     * 职级
     */
    private String worker_level;
 
    /***
     * 职级编码
     */
    private String worker_level_code;
 
    /**
     * 国密等级编码
     */
    private String country_level_code;
 
    /**
     * 国密等级名称
     */
    private String country_level_name;
 
    /**
     * 商密等级编码
     */
    private String business_level_code;
 
    /**
     * 商密等级名称
     */
    private String business_level_name;
 
    /***
     * 人员密级
     */
    private String worker_security_level;
 
    /***
     * 流程状态
     */
    private int mdm_workflow;
 
    /***
     * 修改者
     */
    private String modifier;
 
    /***
     * 修改时间
     */
    private String modifytime;
 
    /***
     * 创建者
     */
    private String creator;
 
    /***
     * 创建时间
     */
    private String createtime;
 
    /**
     * 数据状态
     */
    private int mdm_datastatus;
 
    private String link_fieldvalue;
 
    private String flow_middatastatus;
 
    private String employer;
 
    private int mdm_duplicate;
 
    private EnumerableData gender_entity;
 
    private EnumerableData employment_type_entity;
 
    private String gender;
 
    private  String employment_type;
 
    private String employment_type_nane;
 
    private String mdm_cleanstatus;
 
    private String mdm_parentcode;
 
    private String mdm_yersion;
 
    private String dr_mdm_code;
 
    private String pk_mdm;
 
    private String gender_name;
 
    private String ts;
 
 
    private  String graduatecolleges;
    private  String is_on_duty;
    private  String is_on_job;
    private  String leibie;
    private  String major;
    private  String position_code;
 
    private  String post_state_code;
    private  String post_state_name;
    private  String sort_num;
    private  String worktime;
 
    private  String workyear;
 
    public String getId() {
        return id;
    }
 
    public void setId(String id) {
        this.id = id;
    }
 
    public String getLm_code() {
        return lm_code;
    }
 
    public void setLm_code(String lm_code) {
        this.lm_code = lm_code;
    }
 
    public String getGroup_code() {
        return group_code;
    }
 
    public void setGroup_code(String group_code) {
        this.group_code = group_code;
    }
 
    public String getName() {
        return name;
    }
 
    public void setName(String name) {
        this.name = name;
    }
 
    public String getMdm_code() {
        return mdm_code;
    }
 
    public void setMdm_code(String mdm_code) {
        this.mdm_code = mdm_code;
    }
 
    public int getDr() {
        return dr;
    }
 
    public void setDr(int dr) {
        this.dr = dr;
    }
 
    public String getAdmin_division() {
        return admin_division;
    }
 
    public void setAdmin_division(String admin_division) {
        this.admin_division = admin_division;
    }
 
    public String getAdmin_division_code() {
        return admin_division_code;
    }
 
    public void setAdmin_division_code(String admin_division_code) {
        this.admin_division_code = admin_division_code;
    }
 
    public String getBirthday() {
        return birthday;
    }
 
    public void setBirthday(String birthday) {
        this.birthday = birthday;
    }
 
    public String getBirthplace() {
        return birthplace;
    }
 
    public void setBirthplace(String birthplace) {
        this.birthplace = birthplace;
    }
 
    public String getCitizenship() {
        return citizenship;
    }
 
    public void setCitizenship(String citizenship) {
        this.citizenship = citizenship;
    }
 
    public String getWorker_category_code() {
        return worker_category_code;
    }
 
    public String getWorker_level_code() {
        return worker_level_code;
    }
 
    public String getCountry_level_code() {
        return country_level_code;
    }
 
    public String getCountry_level_name() {
        return country_level_name;
    }
 
    public String getBusiness_level_code() {
        return business_level_code;
    }
 
    public String getBusiness_level_name() {
        return business_level_name;
    }
 
    public String getCountry() {
        return country;
    }
 
    public void setCountry(String country) {
        this.country = country;
    }
 
    public void setWorker_category_code(String worker_category_code) {
        this.worker_category_code = worker_category_code;
    }
 
    public void setWorker_level_code(String worker_level_code) {
        this.worker_level_code = worker_level_code;
    }
 
    public void setCountry_level_code(String country_level_code) {
        this.country_level_code = country_level_code;
    }
 
    public void setCountry_level_name(String country_level_name) {
        this.country_level_name = country_level_name;
    }
 
    public void setBusiness_level_code(String business_level_code) {
        this.business_level_code = business_level_code;
    }
 
    public void setBusiness_level_name(String business_level_name) {
        this.business_level_name = business_level_name;
    }
 
    public String getDept_type() {
        return dept_type;
    }
 
    public void setDept_type(String dept_type) {
        this.dept_type = dept_type;
    }
 
    public String getDept_name() {
        return dept_name;
    }
 
    public void setDept_name(String dept_name) {
        this.dept_name = dept_name;
    }
 
    public String getEducation() {
        return education;
    }
 
    public void setEducation(String education) {
        this.education = education;
    }
 
    public String getEmployer_code() {
        return employer_code;
    }
 
    public void setEmployer_code(String employer_code) {
        this.employer_code = employer_code;
    }
 
    public String getEmployment_form() {
        return employment_form;
    }
 
    public void setEmployment_form(String employment_form) {
        this.employment_form = employment_form;
    }
 
    public String getId_number() {
        return id_number;
    }
 
    public void setId_number(String id_number) {
        this.id_number = id_number;
    }
 
    public String getId_type() {
        return id_type;
    }
 
    public void setId_type(String id_type) {
        this.id_type = id_type;
    }
 
    public String getIs_keyposion() {
        return is_keyposion;
    }
 
    public void setIs_keyposion(String is_keyposion) {
        this.is_keyposion = is_keyposion;
    }
 
    public String getMarital_status() {
        return marital_status;
    }
 
    public void setMarital_status(String marital_status) {
        this.marital_status = marital_status;
    }
 
    public String getMobile_phone() {
        return mobile_phone;
    }
 
    public void setMobile_phone(String mobile_phone) {
        this.mobile_phone = mobile_phone;
    }
 
    public String getNationality() {
        return nationality;
    }
 
    public void setNationality(String nationality) {
        this.nationality = nationality;
    }
 
    public String getOffice_telephone() {
        return office_telephone;
    }
 
    public void setOffice_telephone(String office_telephone) {
        this.office_telephone = office_telephone;
    }
 
    public String getOuter_email() {
        return outer_email;
    }
 
    public void setOuter_email(String outer_email) {
        this.outer_email = outer_email;
    }
 
    public String getParent_dept_code() {
        return parent_dept_code;
    }
 
    public void setParent_dept_code(String parent_dept_code) {
        this.parent_dept_code = parent_dept_code;
    }
 
    public String getParent_dept_name() {
        return parent_dept_name;
    }
 
    public void setParent_dept_name(String parent_dept_name) {
        this.parent_dept_name = parent_dept_name;
    }
 
    public String getPoliticcountenance() {
        return politiccountenance;
    }
 
    public void setPoliticcountenance(String politiccountenance) {
        this.politiccountenance = politiccountenance;
    }
 
    public String getPosition() {
        return position;
    }
 
    public void setPosition(String position) {
        this.position = position;
    }
 
    public String getWork_title() {
        return work_title;
    }
 
    public void setWork_title(String work_title) {
        this.work_title = work_title;
    }
 
    public String getWorker_category() {
        return worker_category;
    }
 
    public void setWorker_category(String worker_category) {
        this.worker_category = worker_category;
    }
 
    public String getWorker_duty() {
        return worker_duty;
    }
 
    public void setWorker_duty(String worker_duty) {
        this.worker_duty = worker_duty;
    }
 
    public String getWorker_email() {
        return worker_email;
    }
 
    public void setWorker_email(String worker_email) {
        this.worker_email = worker_email;
    }
 
    public String getWorker_level() {
        return worker_level;
    }
 
    public void setWorker_level(String worker_level) {
        this.worker_level = worker_level;
    }
 
    public String getWorker_security_level() {
        return worker_security_level;
    }
 
    public void setWorker_security_level(String worker_security_level) {
        this.worker_security_level = worker_security_level;
    }
 
    public int getMdm_workflow() {
        return mdm_workflow;
    }
 
    public void setMdm_workflow(int mdm_workflow) {
        this.mdm_workflow = mdm_workflow;
    }
 
    public String getModifier() {
        return modifier;
    }
 
    public void setModifier(String modifier) {
        this.modifier = modifier;
    }
 
    public String getModifytime() {
        return modifytime;
    }
 
    public void setModifytime(String modifytime) {
        this.modifytime = modifytime;
    }
 
    public String getCreator() {
        return creator;
    }
 
    public void setCreator(String creator) {
        this.creator = creator;
    }
 
    public String getCreatetime() {
        return createtime;
    }
 
    public void setCreatetime(String createtime) {
        this.createtime = createtime;
    }
 
    public int getMdm_datastatus() {
        return mdm_datastatus;
    }
 
    public void setMdm_datastatus(int mdm_datastatus) {
        this.mdm_datastatus = mdm_datastatus;
    }
 
    public String getLink_fieldvalue() {
        return link_fieldvalue;
    }
 
    public void setLink_fieldvalue(String link_fieldvalue) {
        this.link_fieldvalue = link_fieldvalue;
    }
 
    public String getFlow_middatastatus() {
        return flow_middatastatus;
    }
 
    public void setFlow_middatastatus(String flow_middatastatus) {
        this.flow_middatastatus = flow_middatastatus;
    }
 
    public String getEmployer() {
        return employer;
    }
 
    public void setEmployer(String employer) {
        this.employer = employer;
    }
 
    public int getMdm_duplicate() {
        return mdm_duplicate;
    }
 
    public void setMdm_duplicate(int mdm_duplicate) {
        this.mdm_duplicate = mdm_duplicate;
    }
 
    public EnumerableData getGender_entity() {
        return gender_entity;
    }
 
    public void setGender_entity(EnumerableData gender_entity) {
        this.gender_entity = gender_entity;
    }
 
    public EnumerableData getEmployment_type_entity() {
        return employment_type_entity;
    }
 
    public void setEmployment_type_entity(EnumerableData employment_type_entity) {
        this.employment_type_entity = employment_type_entity;
    }
 
    public String getGender() {
        return gender;
    }
 
    public void setGender(String gender) {
        this.gender = gender;
    }
 
    public String getEmployment_type() {
        return employment_type;
    }
 
    public void setEmployment_type(String employment_type) {
        this.employment_type = employment_type;
    }
 
    public String getEmployment_type_nane() {
        return employment_type_nane;
    }
 
    public void setEmployment_type_nane(String employment_type_nane) {
        this.employment_type_nane = employment_type_nane;
    }
 
    public String getMdm_cleanstatus() {
        return mdm_cleanstatus;
    }
 
    public void setMdm_cleanstatus(String mdm_cleanstatus) {
        this.mdm_cleanstatus = mdm_cleanstatus;
    }
 
    public String getMdm_parentcode() {
        return mdm_parentcode;
    }
 
    public void setMdm_parentcode(String mdm_parentcode) {
        this.mdm_parentcode = mdm_parentcode;
    }
 
    public String getMdm_yersion() {
        return mdm_yersion;
    }
 
    public void setMdm_yersion(String mdm_yersion) {
        this.mdm_yersion = mdm_yersion;
    }
 
    public String getDr_mdm_code() {
        return dr_mdm_code;
    }
 
    public void setDr_mdm_code(String dr_mdm_code) {
        this.dr_mdm_code = dr_mdm_code;
    }
 
    public String getPk_mdm() {
        return pk_mdm;
    }
 
    public void setPk_mdm(String pk_mdm) {
        this.pk_mdm = pk_mdm;
    }
 
    public String getGender_name() {
        return gender_name;
    }
 
    public void setGender_name(String gender_name) {
        this.gender_name = gender_name;
    }
 
    public String getTs() {
        return ts;
    }
 
    public void setTs(String ts) {
        this.ts = ts;
    }
 
    public String getGraduatecolleges() {
        return graduatecolleges;
    }
 
    public void setGraduatecolleges(String graduatecolleges) {
        this.graduatecolleges = graduatecolleges;
    }
 
    public String getIs_on_duty() {
        return is_on_duty;
    }
 
    public void setIs_on_duty(String is_on_duty) {
        this.is_on_duty = is_on_duty;
    }
 
    public String getIs_on_job() {
        return is_on_job;
    }
 
    public void setIs_on_job(String is_on_job) {
        this.is_on_job = is_on_job;
    }
 
    public String getLeibie() {
        return leibie;
    }
 
    public void setLeibie(String leibie) {
        this.leibie = leibie;
    }
 
    public String getMajor() {
        return major;
    }
 
    public void setMajor(String major) {
        this.major = major;
    }
 
    public String getPosition_code() {
        return position_code;
    }
 
    public void setPosition_code(String position_code) {
        this.position_code = position_code;
    }
 
    public String getPost_state_code() {
        return post_state_code;
    }
 
    public void setPost_state_code(String post_state_code) {
        this.post_state_code = post_state_code;
    }
 
    public String getPost_state_name() {
        return post_state_name;
    }
 
    public void setPost_state_name(String post_state_name) {
        this.post_state_name = post_state_name;
    }
 
    public String getSort_num() {
        return sort_num;
    }
 
    public void setSort_num(String sort_num) {
        this.sort_num = sort_num;
    }
 
    public String getWorktime() {
        return worktime;
    }
 
    public void setWorktime(String worktime) {
        this.worktime = worktime;
    }
 
    public String getWorkyear() {
        return workyear;
    }
 
    public void setWorkyear(String workyear) {
        this.workyear = workyear;
    }
 
    @Override
    public String toString() {
        return "PersonMasterData{" +
            "id='" + id + '\'' +
            ", lm_code='" + lm_code + '\'' +
            ", group_code='" + group_code + '\'' +
            ", name='" + name + '\'' +
            ", mdm_code='" + mdm_code + '\'' +
            ", dr=" + dr +
            ", admin_division='" + admin_division + '\'' +
            ", admin_division_code='" + admin_division_code + '\'' +
            ", birthday='" + birthday + '\'' +
            ", birthplace='" + birthplace + '\'' +
            ", citizenship='" + citizenship + '\'' +
            ", country='" + country + '\'' +
            ", dept_type='" + dept_type + '\'' +
            ", dept_name='" + dept_name + '\'' +
            ", education='" + education + '\'' +
            ", employer_code='" + employer_code + '\'' +
            ", employment_form='" + employment_form + '\'' +
            ", id_number='" + id_number + '\'' +
            ", id_type='" + id_type + '\'' +
            ", is_keyposion='" + is_keyposion + '\'' +
            ", marital_status='" + marital_status + '\'' +
            ", mobile_phone='" + mobile_phone + '\'' +
            ", nationality='" + nationality + '\'' +
            ", office_telephone='" + office_telephone + '\'' +
            ", outer_email='" + outer_email + '\'' +
            ", parent_dept_code='" + parent_dept_code + '\'' +
            ", parent_dept_name='" + parent_dept_name + '\'' +
            ", politiccountenance='" + politiccountenance + '\'' +
            ", position='" + position + '\'' +
            ", work_title='" + work_title + '\'' +
            ", worker_category='" + worker_category + '\'' +
            ", worker_category_code='" + worker_category_code + '\'' +
            ", worker_duty='" + worker_duty + '\'' +
            ", worker_email='" + worker_email + '\'' +
            ", worker_level='" + worker_level + '\'' +
            ", worker_level_code='" + worker_level_code + '\'' +
            ", country_level_code='" + country_level_code + '\'' +
            ", country_level_name='" + country_level_name + '\'' +
            ", business_level_code='" + business_level_code + '\'' +
            ", business_level_name='" + business_level_name + '\'' +
            ", worker_security_level='" + worker_security_level + '\'' +
            ", mdm_workflow=" + mdm_workflow +
            ", modifier='" + modifier + '\'' +
            ", modifytime='" + modifytime + '\'' +
            ", creator='" + creator + '\'' +
            ", createtime='" + createtime + '\'' +
            ", mdm_datastatus=" + mdm_datastatus +
            ", link_fieldvalue='" + link_fieldvalue + '\'' +
            ", flow_middatastatus='" + flow_middatastatus + '\'' +
            ", employer='" + employer + '\'' +
            ", mdm_duplicate=" + mdm_duplicate +
            ", gender_entity=" + gender_entity +
            ", employment_type_entity=" + employment_type_entity +
            ", gender='" + gender + '\'' +
            ", employment_type='" + employment_type + '\'' +
            ", employment_type_nane='" + employment_type_nane + '\'' +
            ", mdm_cleanstatus='" + mdm_cleanstatus + '\'' +
            ", mdm_parentcode='" + mdm_parentcode + '\'' +
            ", mdm_yersion='" + mdm_yersion + '\'' +
            ", dr_mdm_code='" + dr_mdm_code + '\'' +
            ", pk_mdm='" + pk_mdm + '\'' +
            ", gender_name='" + gender_name + '\'' +
            ", ts='" + ts + '\'' +
            ", graduatecolleges='" + graduatecolleges + '\'' +
            ", is_on_duty='" + is_on_duty + '\'' +
            ", is_on_job='" + is_on_job + '\'' +
            ", leibie='" + leibie + '\'' +
            ", major='" + major + '\'' +
            ", position_code='" + position_code + '\'' +
            ", post_state_code='" + post_state_code + '\'' +
            ", post_state_name='" + post_state_name + '\'' +
            ", sort_num='" + sort_num + '\'' +
            ", worktime='" + worktime + '\'' +
            ", workyear='" + workyear + '\'' +
            '}';
    }
 
}