zjh
2025-01-20 73a816fd2b1e29c25d615c85ce34b12b55c16ccf
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
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
package com.ltkj.common.core.domain.entity;
 
import java.io.Serializable;
import java.util.Date;
 
import com.baomidou.mybatisplus.annotation.*;
import com.fasterxml.jackson.annotation.JsonFormat;
import com.ltkj.common.annotation.Excel;
import com.ltkj.common.core.domain.BaseEntity;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
import org.apache.commons.lang3.builder.ToStringBuilder;
import org.apache.commons.lang3.builder.ToStringStyle;
 
/**
 * 用户信息详情对象 dict_user_info
 *
 * @author ltkj
 * @date 2022-11-15
 */
@Data
@ApiModel(value = "用户详情对象")
@TableName("dict_user_info")
public class DictUserInfo extends BaseEntity implements Serializable {
    @TableField(exist = false)
    private static final long serialVersionUID = 1L;
 
    /**
     * 主键
     */
    @TableId
    private String id;
 
    //用户id
    @ApiModelProperty(value = "用户id")
    private Long userId;
 
    /**
     * 组织ID
     */
    @Excel(name = "组织ID")
    @ApiModelProperty(value = "组织ID")
    private String hospId;
 
    /**
     * 组织中文名称
     */
    @Excel(name = "组织中文名称")
    @ApiModelProperty(value = "组织中文名称")
    private String hospName;
 
    /**
     * 组织类型(PT10.06.17)
     */
    @Excel(name = "组织类型", readConverterExp = "P=T10.06.17")
    @ApiModelProperty(value = "组织类型")
    private String orgType;
 
    /**
     * 姓名
     */
    @Excel(name = "姓名")
    @ApiModelProperty(value = "姓名")
    private String staffName;
 
    /**
     * 英文名
     */
    @Excel(name = "英文名")
    @ApiModelProperty(value = "英文名")
    private String staffEnName;
 
    /**
     * 拼音
     */
    @Excel(name = "拼音")
    @ApiModelProperty(value = "拼音")
    private String spell;
 
    /**
     * 人员编码
     */
    @Excel(name = "人员编码")
    @ApiModelProperty(value = "人员编码")
    private String staffCode;
 
    /**
     * 出生日期
     */
    @JsonFormat(pattern = "yyyy-MM-dd")
    @Excel(name = "出生日期", width = 30, dateFormat = "yyyy-MM-dd")
    @ApiModelProperty(value = "出生日期")
    private Date brithday;
 
    /**
     * 民族码值(GB/T3304-1991)
     */
    @Excel(name = "民族码值", readConverterExp = "G=B/T3304-1991")
    @ApiModelProperty(value = "民族码值")
    private String nationCode;
 
    /**
     * 民族描述
     */
    @Excel(name = "民族描述")
    @ApiModelProperty(value = "民族描述")
    private String nationDesc;
 
    /**
     * 证件类型(CV02.01.101)
     */
    @Excel(name = "证件类型", readConverterExp = "C=V02.01.101")
    @ApiModelProperty(value = "证件类型")
    private String certificateType;
 
    /**
     * 证件号码
     */
    @Excel(name = "证件号码")
    @ApiModelProperty(value = "证件号码")
    private String certificateNo;
 
    /**
     * 身份证件号
     */
    @Excel(name = "身份证件号")
    @ApiModelProperty(value = "身份证件号")
    private String cardNo;
 
    /**
     * 婚姻码值(GB/T2261_2-2003)
     */
    @Excel(name = "婚姻码值", readConverterExp = "G=B/T2261_2-2003")
    @ApiModelProperty(value = "婚姻码值")
    private String marriageCode;
 
    /**
     * 婚姻描述
     */
    @Excel(name = "婚姻描述")
    @ApiModelProperty(value = "婚姻描述")
    private String marriageDesc;
 
    /**
     * 籍贯
     */
    @Excel(name = "籍贯")
    @ApiModelProperty(value = "籍贯")
    private String homeTown;
 
    /**
     * 出生地址
     */
    @Excel(name = "出生地址")
    @ApiModelProperty(value = "出生地址")
    private String brithAddr;
 
    /**
     * 现居住地址
     */
    @Excel(name = "现居住地址")
    @ApiModelProperty(value = "现居住地址")
    private String liveAddr;
 
    /**
     * 移动电话
     */
    @Excel(name = "移动电话")
    @ApiModelProperty(value = "移动电话")
    private String phone;
 
    /**
     * 办公室联系电话
     */
    @Excel(name = "办公室联系电话")
    @ApiModelProperty(value = "办公室联系电话")
    private String officePhone;
 
    /**
     * 邮政编码
     */
    @Excel(name = "邮政编码")
    @ApiModelProperty(value = "邮政编码")
    private String postCode;
 
    /**
     * 电子邮箱
     */
    @Excel(name = "电子邮箱")
    @ApiModelProperty(value = "电子邮箱")
    private String email;
 
    /**
     * 人员类别(PT10.01.009)
     */
    @Excel(name = "人员类别", readConverterExp = "P=T10.01.009")
    @ApiModelProperty(value = "人员类别")
    private String kindCode;
 
    /**
     * 学历码值(GB/T4658-2006)
     */
    @Excel(name = "学历码值", readConverterExp = "G=B/T4658-2006")
    private String educationCode;
 
    /**
     * 学历描述
     */
    @Excel(name = "学历描述")
    private String educationDesc;
 
    /**
     * 学位码值(GB/T6864-2003)
     */
    @Excel(name = "学位码值", readConverterExp = "G=B/T6864-2003")
    private String degreeCode;
 
    /**
     * 所学专业码值(CT98_00_023)
     */
    @Excel(name = "所学专业码值", readConverterExp = "C=T98_00_023")
    private String professionalCode;
 
    /**
     * 专业技术职务类别码值(CV08.30.005)
     */
    @Excel(name = "专业技术职务类别码值", readConverterExp = "C=V08.30.005")
    private String postionTypeCode;
 
    /**
     * 专业技术职务码值(GB/T 8561-2001)
     */
    @Excel(name = "专业技术职务码值", readConverterExp = "G=B/T,8=561-2001")
    private String positionCode;
 
    /**
     * 健康状况码值(GB/T2261_3-2003)
     */
    @Excel(name = "健康状况码值", readConverterExp = "G=B/T2261_3-2003")
    private String healthStatusCode;
 
    /**
     * 行政管理职务(PT10.01.012)
     */
    @Excel(name = "行政管理职务", readConverterExp = "P=T10.01.012")
    private String managerPosition;
 
    /**
     * 处方职称(PT10.01.029)
     */
    @Excel(name = "处方职称", readConverterExp = "处方职称(PT10.01.029)")
    private String cftitle;
 
    /**
     * 参加工作日期
     */
    @JsonFormat(pattern = "yyyy-MM-dd")
    @Excel(name = "参加工作日期", width = 30, dateFormat = "yyyy-MM-dd")
    @ApiModelProperty(value = "参加工作日期")
    private Date workDate;
 
    /**
     * 调入/调出时间
     */
    @JsonFormat(pattern = "yyyy-MM-dd")
    @Excel(name = "调入/调出时间", width = 30, dateFormat = "yyyy-MM-dd")
    private Date drcDate;
 
    /**
     * 简介
     */
    @Excel(name = "简介")
    private String profile;
 
    /**
     * 是否由乡镇卫生院或社区卫生服务机构派驻村卫生室工作(CT01.00.002)
     */
    @Excel(name = "是否由乡镇卫生院或社区卫生服务机构派驻村卫生室工作", readConverterExp = "C=T01.00.002")
    private String stationed;
 
    /**
     * 是否中国科学院士和中国工程院院士(CT01.00.002)
     */
    @Excel(name = "是否中国科学院士和中国工程院院士", readConverterExp = "C=T01.00.002")
    private String academician;
 
    /**
     * 是否有突出贡献的中青年科学、技术、管理专家(CT01.00.002)
     */
    @Excel(name = "是否有突出贡献的中青年科学、技术、管理专家", readConverterExp = "C=T01.00.002")
    private String expert;
 
    /**
     * 是否享受国务院政府特殊津贴人员(CT01.00.002)
     */
    @Excel(name = "是否享受国务院政府特殊津贴人员", readConverterExp = "C=T01.00.002")
    private String allowance;
 
    /**
     * 是否新世纪百千万人才工程国家级人选(CT01.00.002)
     */
    @Excel(name = "是否新世纪百千万人才工程国家级人选", readConverterExp = "C=T01.00.002")
    private String nationPeople;
 
    /**
     * 是否国家科技奖项负责人(CT01.00.002)
     */
    @Excel(name = "是否国家科技奖项负责人", readConverterExp = "C=T01.00.002")
    private String technologyHeadPeople;
 
    /**
     * 是否急救人员(CT01.00.002)
     */
    @Excel(name = "是否急救人员", readConverterExp = "C=T01.00.002")
    private String responder;
 
    /**
     * 医师执业类别码值(CT98.00.024)
     */
    @Excel(name = "医师执业类别码值", readConverterExp = "C=T98.00.024")
    private String phyPrcaticeTypeCod;
 
    /**
     * 医师-执业范围码值(CT98.00.031)
     */
    @Excel(name = "医师-执业范围码值", readConverterExp = "C=T98.00.031")
    private String phyPrcaticeScopeCode;
 
    /**
     * 医师-执业资格名称
     */
    @Excel(name = "医师-执业资格名称")
    private String phyQualifiedName;
 
    /**
     * 医师-执业资格证书编码
     */
    @Excel(name = "医师-执业资格证书编码")
    private String phyQualifiedCertifiedNo;
 
    /**
     * 医师-执业证书编码
     */
    @Excel(name = "医师-执业证书编码")
    private String phyPracticeCertificateNo;
 
    /**
     * 医师-注册时间
     */
    @JsonFormat(pattern = "yyyy-MM-dd")
    @Excel(name = "医师-注册时间", width = 30, dateFormat = "yyyy-MM-dd")
    private Date phyRegisterDate;
 
    /**
     * 医师-注册有效期
     */
    @JsonFormat(pattern = "yyyy-MM-dd")
    @Excel(name = "医师-注册有效期", width = 30, dateFormat = "yyyy-MM-dd")
    private Date phyRegisterValidDate;
 
    /**
     * 医师-注册地
     */
    @Excel(name = "医师-注册地")
    private String phyRegisterAddress;
 
    /**
     * 编制情况(PT10.01.019)
     */
    @Excel(name = "编制情况", readConverterExp = "P=T10.01.019")
    private String formation;
 
    /**
     * 医保职称
     */
    @Excel(name = "医保职称")
    private String medicalTitle;
 
    /**
     * 医保编码
     */
    @Excel(name = "医保编码")
    private String medicalId;
 
    /**
     * 多机构执业医师(CT01.00.002)
     */
    @Excel(name = "多机构执业医师", readConverterExp = "C=T01.00.002")
    private String moreHospPhy;
 
    /**
     * 药师-注册证书编号
     */
    @Excel(name = "药师-注册证书编号")
    private String phaPracticeCertificateCode;
 
    /**
     * 药师-执业类别码值(CY00.00.008)
     */
    @Excel(name = "药师-执业类别码值", readConverterExp = "C=Y00.00.008")
    private String phaPrcaticeTypeCode;
 
    /**
     * 药师-执业范围码值(CY00.00.009)
     */
    @Excel(name = "药师-执业范围码值", readConverterExp = "C=Y00.00.009")
    private String phaPrcaticeScopeCode;
 
    /**
     * 药师-注册时间
     */
    @JsonFormat(pattern = "yyyy-MM-dd")
    @Excel(name = "药师-注册时间", width = 30, dateFormat = "yyyy-MM-dd")
    private Date phaRegisterDate;
 
    /**
     * 药师-注册有效期
     */
    @JsonFormat(pattern = "yyyy-MM-dd")
    @Excel(name = "药师-注册有效期", width = 30, dateFormat = "yyyy-MM-dd")
    private Date phaRegisterValidDate;
 
    /**
     * 药师-注册地
     */
    @Excel(name = "药师-注册地")
    private String phaRegisterAddress;
 
    /**
     * 专家-资格证号
     */
    @Excel(name = "专家-资格证号")
    private Long phaCertifiedNo;
 
    /**
     * 专家职称级别码值(CY00.00.158)
     */
    @Excel(name = "专家职称级别码值", readConverterExp = "C=Y00.00.158")
    private String expJobLevelCode;
 
    /**
     * 擅长领域
     */
    @Excel(name = "擅长领域")
    private String expGoodArea;
 
    /**
     * 锁定标志
     */
    @Excel(name = "锁定标志")
    private Long locked;
 
    /**
     * 排序
     */
    @Excel(name = "排序")
    private Long orderNum;
 
    /**
     * 数据状态(PT10.00.004)
     */
    @Excel(name = "数据状态(PT10.00.004)")
    private String effective;
 
    /**
     * 政治面貌(GB/T4762)
     */
    @Excel(name = "政治面貌", readConverterExp = "G=B/T4762")
    private String politicalStatus;
 
    /**
     * 加入党派日期
     */
    @JsonFormat(pattern = "yyyy-MM-dd")
    @Excel(name = "加入党派日期", width = 30, dateFormat = "yyyy-MM-dd")
    private Date joinpartisanDate;
 
    /**
     * 职业资格证书名称
     */
    @Excel(name = "职业资格证书名称")
    private String proQualiCertificate;
 
    /**
     * 入职日期
     */
    @JsonFormat(pattern = "yyyy-MM-dd")
    @Excel(name = "入职日期", width = 30, dateFormat = "yyyy-MM-dd")
    private Date entryDate;
 
    /**
     * 是否签订合同(CT01.00.002)
     */
    @Excel(name = "是否签订合同", readConverterExp = "是否签订合同(CT01.00.002)")
    private String whetherContract;
 
    /**
     * 是否实习(CT01.00.002)
     */
    @Excel(name = "是否实习", readConverterExp = "是否实习(CT01.00.002)")
    private String internshIp;
 
    /**
     * 五笔
     */
    @Excel(name = "五笔")
    @ApiModelProperty(value = "五笔")
    private String wbm;
 
    /**
     * 籍贯
     */
    @Excel(name = "籍贯")
    @ApiModelProperty(value = "籍贯")
    private String homeTownDesc;
 
    /**
     * 微信openid
     */
    @Excel(name = "微信openid")
    @ApiModelProperty(value = "微信号")
    private Long openId;
 
    /**
     * 在职类别(PT10.06.18)
     */
    @Excel(name = "在职类别", readConverterExp = "P=T10.06.18")
    private String jobCategory;
 
    @TableField(fill = FieldFill.INSERT)
    private String createBy;
 
    /**
     * 创建时间
     */
    @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
    @TableField(fill = FieldFill.INSERT)
    private Date createTime;
 
    public String getQmImg() {
        return qmImg;
    }
 
    public void setQmImg(String qmImg) {
        this.qmImg = qmImg;
    }
 
    @ApiModelProperty(value = "签名图片")
    private String qmImg;
 
    public void setHospId(String hospId) {
        this.hospId = hospId;
    }
 
    public String getHospId() {
        return hospId;
    }
 
    public void setHospName(String hospName) {
        this.hospName = hospName;
    }
 
    public String getHospName() {
        return hospName;
    }
 
    public void setOrgType(String orgType) {
        this.orgType = orgType;
    }
 
    public String getOrgType() {
        return orgType;
    }
 
    public void setStaffName(String staffName) {
        this.staffName = staffName;
    }
 
    public String getStaffName() {
        return staffName;
    }
 
    public void setStaffEnName(String staffEnName) {
        this.staffEnName = staffEnName;
    }
 
    public String getStaffEnName() {
        return staffEnName;
    }
 
    public void setSpell(String spell) {
        this.spell = spell;
    }
 
    public String getSpell() {
        return spell;
    }
 
    public void setStaffCode(String staffCode) {
        this.staffCode = staffCode;
    }
 
    public String getStaffCode() {
        return staffCode;
    }
 
    public void setBrithday(Date brithday) {
        this.brithday = brithday;
    }
 
    public Date getBrithday() {
        return brithday;
    }
 
    public void setNationCode(String nationCode) {
        this.nationCode = nationCode;
    }
 
    public String getNationCode() {
        return nationCode;
    }
 
    public void setNationDesc(String nationDesc) {
        this.nationDesc = nationDesc;
    }
 
    public String getNationDesc() {
        return nationDesc;
    }
 
    public void setCertificateType(String certificateType) {
        this.certificateType = certificateType;
    }
 
    public String getCertificateType() {
        return certificateType;
    }
 
    public void setCertificateNo(String certificateNo) {
        this.certificateNo = certificateNo;
    }
 
    public String getCertificateNo() {
        return certificateNo;
    }
 
    public void setCardNo(String cardNo) {
        this.cardNo = cardNo;
    }
 
    public String getCardNo() {
        return cardNo;
    }
 
    public void setMarriageCode(String marriageCode) {
        this.marriageCode = marriageCode;
    }
 
    public String getMarriageCode() {
        return marriageCode;
    }
 
    public void setMarriageDesc(String marriageDesc) {
        this.marriageDesc = marriageDesc;
    }
 
    public String getMarriageDesc() {
        return marriageDesc;
    }
 
    public void setHomeTown(String homeTown) {
        this.homeTown = homeTown;
    }
 
    public String getHomeTown() {
        return homeTown;
    }
 
    public void setBrithAddr(String brithAddr) {
        this.brithAddr = brithAddr;
    }
 
    public String getBrithAddr() {
        return brithAddr;
    }
 
    public void setLiveAddr(String liveAddr) {
        this.liveAddr = liveAddr;
    }
 
    public String getLiveAddr() {
        return liveAddr;
    }
 
    public void setPhone(String phone) {
        this.phone = phone;
    }
 
    public String getPhone() {
        return phone;
    }
 
    public void setOfficePhone(String officePhone) {
        this.officePhone = officePhone;
    }
 
    public String getOfficePhone() {
        return officePhone;
    }
 
    public void setPostCode(String postCode) {
        this.postCode = postCode;
    }
 
    public String getPostCode() {
        return postCode;
    }
 
    public void setEmail(String email) {
        this.email = email;
    }
 
    public String getEmail() {
        return email;
    }
 
    public void setKindCode(String kindCode) {
        this.kindCode = kindCode;
    }
 
    public String getKindCode() {
        return kindCode;
    }
 
    public void setEducationCode(String educationCode) {
        this.educationCode = educationCode;
    }
 
    public String getEducationCode() {
        return educationCode;
    }
 
    public void setEducationDesc(String educationDesc) {
        this.educationDesc = educationDesc;
    }
 
    public String getEducationDesc() {
        return educationDesc;
    }
 
    public void setDegreeCode(String degreeCode) {
        this.degreeCode = degreeCode;
    }
 
    public String getDegreeCode() {
        return degreeCode;
    }
 
    public void setProfessionalCode(String professionalCode) {
        this.professionalCode = professionalCode;
    }
 
    public String getProfessionalCode() {
        return professionalCode;
    }
 
    public void setPostionTypeCode(String postionTypeCode) {
        this.postionTypeCode = postionTypeCode;
    }
 
    public String getPostionTypeCode() {
        return postionTypeCode;
    }
 
    public void setPositionCode(String positionCode) {
        this.positionCode = positionCode;
    }
 
    public String getPositionCode() {
        return positionCode;
    }
 
    public void setHealthStatusCode(String healthStatusCode) {
        this.healthStatusCode = healthStatusCode;
    }
 
    public String getHealthStatusCode() {
        return healthStatusCode;
    }
 
    public void setManagerPosition(String managerPosition) {
        this.managerPosition = managerPosition;
    }
 
    public String getManagerPosition() {
        return managerPosition;
    }
 
    public void setCftitle(String cftitle) {
        this.cftitle = cftitle;
    }
 
    public String getCftitle() {
        return cftitle;
    }
 
    public void setWorkDate(Date workDate) {
        this.workDate = workDate;
    }
 
    public Date getWorkDate() {
        return workDate;
    }
 
    public void setDrcDate(Date drcDate) {
        this.drcDate = drcDate;
    }
 
    public Date getDrcDate() {
        return drcDate;
    }
 
    public void setProfile(String profile) {
        this.profile = profile;
    }
 
    public String getProfile() {
        return profile;
    }
 
    public void setStationed(String stationed) {
        this.stationed = stationed;
    }
 
    public String getStationed() {
        return stationed;
    }
 
    public void setAcademician(String academician) {
        this.academician = academician;
    }
 
    public String getAcademician() {
        return academician;
    }
 
    public void setExpert(String expert) {
        this.expert = expert;
    }
 
    public String getExpert() {
        return expert;
    }
 
    public void setAllowance(String allowance) {
        this.allowance = allowance;
    }
 
    public String getAllowance() {
        return allowance;
    }
 
    public void setNationPeople(String nationPeople) {
        this.nationPeople = nationPeople;
    }
 
    public String getNationPeople() {
        return nationPeople;
    }
 
    public void setTechnologyHeadPeople(String technologyHeadPeople) {
        this.technologyHeadPeople = technologyHeadPeople;
    }
 
    public String getTechnologyHeadPeople() {
        return technologyHeadPeople;
    }
 
    public void setResponder(String responder) {
        this.responder = responder;
    }
 
    public String getResponder() {
        return responder;
    }
 
    public void setPhyPrcaticeTypeCod(String phyPrcaticeTypeCod) {
        this.phyPrcaticeTypeCod = phyPrcaticeTypeCod;
    }
 
    public String getPhyPrcaticeTypeCod() {
        return phyPrcaticeTypeCod;
    }
 
    public void setPhyPrcaticeScopeCode(String phyPrcaticeScopeCode) {
        this.phyPrcaticeScopeCode = phyPrcaticeScopeCode;
    }
 
    public String getPhyPrcaticeScopeCode() {
        return phyPrcaticeScopeCode;
    }
 
    public void setPhyQualifiedName(String phyQualifiedName) {
        this.phyQualifiedName = phyQualifiedName;
    }
 
    public String getPhyQualifiedName() {
        return phyQualifiedName;
    }
 
    public void setPhyQualifiedCertifiedNo(String phyQualifiedCertifiedNo) {
        this.phyQualifiedCertifiedNo = phyQualifiedCertifiedNo;
    }
 
    public String getPhyQualifiedCertifiedNo() {
        return phyQualifiedCertifiedNo;
    }
 
    public void setPhyPracticeCertificateNo(String phyPracticeCertificateNo) {
        this.phyPracticeCertificateNo = phyPracticeCertificateNo;
    }
 
    public String getPhyPracticeCertificateNo() {
        return phyPracticeCertificateNo;
    }
 
    public void setPhyRegisterDate(Date phyRegisterDate) {
        this.phyRegisterDate = phyRegisterDate;
    }
 
    public Date getPhyRegisterDate() {
        return phyRegisterDate;
    }
 
    public void setPhyRegisterValidDate(Date phyRegisterValidDate) {
        this.phyRegisterValidDate = phyRegisterValidDate;
    }
 
    public Date getPhyRegisterValidDate() {
        return phyRegisterValidDate;
    }
 
    public void setPhyRegisterAddress(String phyRegisterAddress) {
        this.phyRegisterAddress = phyRegisterAddress;
    }
 
    public String getPhyRegisterAddress() {
        return phyRegisterAddress;
    }
 
    public void setFormation(String formation) {
        this.formation = formation;
    }
 
    public String getFormation() {
        return formation;
    }
 
    public void setMedicalTitle(String medicalTitle) {
        this.medicalTitle = medicalTitle;
    }
 
    public String getMedicalTitle() {
        return medicalTitle;
    }
 
    public void setMedicalId(String medicalId) {
        this.medicalId = medicalId;
    }
 
    public String getMedicalId() {
        return medicalId;
    }
 
    public void setMoreHospPhy(String moreHospPhy) {
        this.moreHospPhy = moreHospPhy;
    }
 
    public String getMoreHospPhy() {
        return moreHospPhy;
    }
 
    public void setPhaPracticeCertificateCode(String phaPracticeCertificateCode) {
        this.phaPracticeCertificateCode = phaPracticeCertificateCode;
    }
 
    public String getPhaPracticeCertificateCode() {
        return phaPracticeCertificateCode;
    }
 
    public void setPhaPrcaticeTypeCode(String phaPrcaticeTypeCode) {
        this.phaPrcaticeTypeCode = phaPrcaticeTypeCode;
    }
 
    public String getPhaPrcaticeTypeCode() {
        return phaPrcaticeTypeCode;
    }
 
    public void setPhaPrcaticeScopeCode(String phaPrcaticeScopeCode) {
        this.phaPrcaticeScopeCode = phaPrcaticeScopeCode;
    }
 
    public String getPhaPrcaticeScopeCode() {
        return phaPrcaticeScopeCode;
    }
 
    public void setPhaRegisterDate(Date phaRegisterDate) {
        this.phaRegisterDate = phaRegisterDate;
    }
 
    public Date getPhaRegisterDate() {
        return phaRegisterDate;
    }
 
    public void setPhaRegisterValidDate(Date phaRegisterValidDate) {
        this.phaRegisterValidDate = phaRegisterValidDate;
    }
 
    public Date getPhaRegisterValidDate() {
        return phaRegisterValidDate;
    }
 
    public void setPhaRegisterAddress(String phaRegisterAddress) {
        this.phaRegisterAddress = phaRegisterAddress;
    }
 
    public String getPhaRegisterAddress() {
        return phaRegisterAddress;
    }
 
    public void setPhaCertifiedNo(Long phaCertifiedNo) {
        this.phaCertifiedNo = phaCertifiedNo;
    }
 
    public Long getPhaCertifiedNo() {
        return phaCertifiedNo;
    }
 
    public void setExpJobLevelCode(String expJobLevelCode) {
        this.expJobLevelCode = expJobLevelCode;
    }
 
    public String getExpJobLevelCode() {
        return expJobLevelCode;
    }
 
    public void setExpGoodArea(String expGoodArea) {
        this.expGoodArea = expGoodArea;
    }
 
    public String getExpGoodArea() {
        return expGoodArea;
    }
 
    public void setLocked(Long locked) {
        this.locked = locked;
    }
 
    public Long getLocked() {
        return locked;
    }
 
    public void setOrderNum(Long orderNum) {
        this.orderNum = orderNum;
    }
 
    public Long getOrderNum() {
        return orderNum;
    }
 
    public void setEffective(String effective) {
        this.effective = effective;
    }
 
    public String getEffective() {
        return effective;
    }
 
    public void setPoliticalStatus(String politicalStatus) {
        this.politicalStatus = politicalStatus;
    }
 
    public String getPoliticalStatus() {
        return politicalStatus;
    }
 
    public void setJoinpartisanDate(Date joinpartisanDate) {
        this.joinpartisanDate = joinpartisanDate;
    }
 
    public Date getJoinpartisanDate() {
        return joinpartisanDate;
    }
 
    public void setProQualiCertificate(String proQualiCertificate) {
        this.proQualiCertificate = proQualiCertificate;
    }
 
    public String getProQualiCertificate() {
        return proQualiCertificate;
    }
 
    public void setEntryDate(Date entryDate) {
        this.entryDate = entryDate;
    }
 
    public Date getEntryDate() {
        return entryDate;
    }
 
    public void setWhetherContract(String whetherContract) {
        this.whetherContract = whetherContract;
    }
 
    public String getWhetherContract() {
        return whetherContract;
    }
 
    public void setInternshIp(String internshIp) {
        this.internshIp = internshIp;
    }
 
    public String getInternshIp() {
        return internshIp;
    }
 
    public void setWbm(String wbm) {
        this.wbm = wbm;
    }
 
    public String getWbm() {
        return wbm;
    }
 
    public void setHomeTownDesc(String homeTownDesc) {
        this.homeTownDesc = homeTownDesc;
    }
 
    public String getHomeTownDesc() {
        return homeTownDesc;
    }
 
    public void setOpenId(Long openId) {
        this.openId = openId;
    }
 
    public Long getOpenId() {
        return openId;
    }
 
    public void setJobCategory(String jobCategory) {
        this.jobCategory = jobCategory;
    }
 
    public String getJobCategory() {
        return jobCategory;
    }
 
    @Override
    public String toString() {
        return new ToStringBuilder(this, ToStringStyle.MULTI_LINE_STYLE)
                .append("id", getId())
                .append("hospId", getHospId())
                .append("hospName", getHospName())
                .append("orgType", getOrgType())
                .append("staffName", getStaffName())
                .append("staffEnName", getStaffEnName())
                .append("spell", getSpell())
                .append("staffCode", getStaffCode())
                .append("brithday", getBrithday())
                .append("nationCode", getNationCode())
                .append("nationDesc", getNationDesc())
                .append("certificateType", getCertificateType())
                .append("certificateNo", getCertificateNo())
                .append("cardNo", getCardNo())
                .append("marriageCode", getMarriageCode())
                .append("marriageDesc", getMarriageDesc())
                .append("homeTown", getHomeTown())
                .append("brithAddr", getBrithAddr())
                .append("liveAddr", getLiveAddr())
                .append("phone", getPhone())
                .append("officePhone", getOfficePhone())
                .append("postCode", getPostCode())
                .append("email", getEmail())
                .append("kindCode", getKindCode())
                .append("educationCode", getEducationCode())
                .append("educationDesc", getEducationDesc())
                .append("degreeCode", getDegreeCode())
                .append("professionalCode", getProfessionalCode())
                .append("postionTypeCode", getPostionTypeCode())
                .append("positionCode", getPositionCode())
                .append("healthStatusCode", getHealthStatusCode())
                .append("managerPosition", getManagerPosition())
                .append("cftitle", getCftitle())
                .append("workDate", getWorkDate())
                .append("drcDate", getDrcDate())
                .append("profile", getProfile())
                .append("stationed", getStationed())
                .append("academician", getAcademician())
                .append("expert", getExpert())
                .append("allowance", getAllowance())
                .append("nationPeople", getNationPeople())
                .append("technologyHeadPeople", getTechnologyHeadPeople())
                .append("responder", getResponder())
                .append("phyPrcaticeTypeCod", getPhyPrcaticeTypeCod())
                .append("phyPrcaticeScopeCode", getPhyPrcaticeScopeCode())
                .append("phyQualifiedName", getPhyQualifiedName())
                .append("phyQualifiedCertifiedNo", getPhyQualifiedCertifiedNo())
                .append("phyPracticeCertificateNo", getPhyPracticeCertificateNo())
                .append("phyRegisterDate", getPhyRegisterDate())
                .append("phyRegisterValidDate", getPhyRegisterValidDate())
                .append("phyRegisterAddress", getPhyRegisterAddress())
                .append("formation", getFormation())
                .append("medicalTitle", getMedicalTitle())
                .append("medicalId", getMedicalId())
                .append("moreHospPhy", getMoreHospPhy())
                .append("phaPracticeCertificateCode", getPhaPracticeCertificateCode())
                .append("phaPrcaticeTypeCode", getPhaPrcaticeTypeCode())
                .append("phaPrcaticeScopeCode", getPhaPrcaticeScopeCode())
                .append("phaRegisterDate", getPhaRegisterDate())
                .append("phaRegisterValidDate", getPhaRegisterValidDate())
                .append("phaRegisterAddress", getPhaRegisterAddress())
                .append("phaCertifiedNo", getPhaCertifiedNo())
                .append("expJobLevelCode", getExpJobLevelCode())
                .append("expGoodArea", getExpGoodArea())
                .append("locked", getLocked())
                .append("remark", getRemark())
                .append("createBy", getCreateBy())
                .append("createTime", getCreateTime())
                .append("updateBy", getUpdateBy())
                .append("updateTime", getUpdateTime())
                .append("orderNum", getOrderNum())
                .append("effective", getEffective())
                .append("politicalStatus", getPoliticalStatus())
                .append("joinpartisanDate", getJoinpartisanDate())
                .append("proQualiCertificate", getProQualiCertificate())
                .append("entryDate", getEntryDate())
                .append("whetherContract", getWhetherContract())
                .append("internshIp", getInternshIp())
                .append("wbm", getWbm())
                .append("homeTownDesc", getHomeTownDesc())
                .append("openId", getOpenId())
                .append("jobCategory", getJobCategory())
                .append("qmImg", getQmImg())
                .append("deleted", getDeleted())
                .toString();
    }
}