CZT
2023-11-20 b19a8901f4060dcfd4cc2477374da2a7da267336
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
package com.fzzy.api.entity;
 
import com.alibaba.fastjson.annotation.JSONField;
import com.bstek.dorado.annotation.PropertyDef;
import lombok.Data;
 
import javax.persistence.Column;
import javax.persistence.Entity;
import javax.persistence.Id;
import javax.persistence.Table;
import java.io.Serializable;
import java.util.Date;
 
/**
 * 接口表-人员信息
 */
@Data
@Entity
@Table(name = "API_1112")
public class Api1112  implements Serializable {
 
    /**
     * 
     */
    private static final long serialVersionUID = -6628887714024258654L;
 
    @Id
    @PropertyDef(label = "身份证号码" )
    @Column(name = "sfzhm", length = 18)
    private String sfzhm;
 
    @PropertyDef(label = "单位代码" )
    @Column(name = "dwdm", length = 18)
    private String dwdm;
    @JSONField(serialize = false)
    @PropertyDef(label = "业务id")
    @Column(name = "bizId", length = 40)
    private String bizId;
 
    @PropertyDef(label = "库区代码")
    @Column(name = "kqdm", length = 21)
    private String kqdm;
 
    @PropertyDef(label = "单位名称" )
    @Column(name = "dwmc", length = 256)
    private String dwmc;
 
    @PropertyDef(label = "隶属部门" )
    @Column(name = "lsbm", length = 256)
    private String lsbm;
 
    @PropertyDef(label = "行政区划代码" )
    @Column(name = "xzqhdm", length = 6)
    private String xzqhdm;
 
    @PropertyDef(label = "姓名" )
    @Column(name = "xm", length = 32)
    private String xm;
 
    @PropertyDef(label = "性别" )
    @Column(name = "xb", length = 1)
    private String xb;
 
    @PropertyDef(label = "入职日期" )
    @JSONField(format = "yyyy-MM-dd")
    @Column(name = "rzrq")
    private Date rzrq;
 
    @PropertyDef(label = "岗位性质" )
    @Column(name = "gwxz", length = 2)
    private String gwxz;
 
    @PropertyDef(label = "在岗状态" )
    @Column(name = "zgzt", length = 2)
    private String zgzt;
 
    @PropertyDef(label = "离职日期" )
    @JSONField(format = "yyyy-MM-dd")
    @Column(name = "lzrq")
    private Date lzrq;
 
    @PropertyDef(label = "座机电话" )
    @Column(name = "zjdh", length = 16)
    private String zjdh;
 
    @PropertyDef(label = "移动电话" )
    @Column(name = "yddh", length = 16)
    private String yddh;
 
    @PropertyDef(label = "电子邮箱" )
    @Column(name = "dzyx", length = 32)
    private String dzyx;
 
    @PropertyDef(label = "民族" )
    @Column(name = "mz", length = 2)
    private String mz;
 
    @PropertyDef(label = "政治面貌" )
    @Column(name = "zzmm", length = 2)
    private String zzmm;
 
    @PropertyDef(label = "人员类别" )
    @Column(name = "rylb", length = 4)
    private String rylb;
 
    @PropertyDef(label = "专业" )
    @Column(name = "zy", length = 128)
    private String zy;
 
    @PropertyDef(label = "取得最高职称或职业资格时间" )
    @JSONField(format = "yyyy-MM-dd")
    @Column(name = "qdzgzchzyzgsj")
    private Date qdzgzchzyzgsj;
 
    @PropertyDef(label = "学历" )
    @Column(name = "xl", length = 1)
    private String xl;
 
    @PropertyDef(label = "职务" )
    @Column(name = "zw", length = 16)
    private String zw;
 
    @PropertyDef(label = "操作标志" )
    @Column(name = "czbz", length = 1)
    private String czbz;
 
    @PropertyDef(label = "最后更新时间" )
    @JSONField(format = "yyyy-MM-dd HH:mm:ss")
    @Column(name = "zhgxsj")
    private Date zhgxsj;
 
 
}