czt
2025-07-26 f495e422b1de10b1d1810158fca1c63f9b60fe45
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
package com.fzzy.async.fzzy40.entity;
 
import com.bstek.dorado.annotation.PropertyDef;
import com.fasterxml.jackson.annotation.JsonFormat;
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;
 
/**
 * OA-人员管理
 *
 * @author: YAN
 * @description:
 * @version:
 * @data:2023年8月10日
 */
@Data
@Entity
@Table(name = "D_OA_STAFF")
public class Fz40OAStaff implements Serializable {
    private static final long serialVersionUID = 1L;
    @Id
    @Column(name = "sfzhm", length = 18)
    @PropertyDef(label = "身份证号码")
    private String sfzhm;
 
    @Column(name = "COMPANY_ID_", length = 10)
    @PropertyDef(label = "组织编码", description = "")
    private String companyId;
 
    @Column(name = "DEPT_ID_", length = 20)
    @PropertyDef(label = "库区编码", description = "")
    private String deptId;
 
    @Column(name = "lsbm", length = 256)
    @PropertyDef(label = "隶属部门", description = "隶属部门名称")
    private String lsbm;
 
    @Column(name = "xzqhdm", length = 6)
    @PropertyDef(label = "所属行政区划")
    private String xzqhdm;
 
    @Column(name = "xzqhmc", length = 6)
    @PropertyDef(label = "所属行政区划")
    private String xzqhmc;
 
    @Column(name = "xm", length = 32)
    @PropertyDef(label = "姓名")
    private String xm;
 
    @Column(name = "xb", length = 1)
    @PropertyDef(label = "性别")
    private String xb;
 
    @Column(name = "rzrq")
    @PropertyDef(label = "入职日期")
    @JsonFormat(shape = JsonFormat.Shape.STRING, pattern = "yyyy-MM-dd", timezone = "GMT+8")
    private Date rzrq;
    /**
     * 11: 在岗职工(长期),12: 在岗 职工(临时),20: 其他从业人员
     */
    @Column(name = "gwxz", length = 2)
    @PropertyDef(label = "岗位性质")
    private String gwxz;
    /**
     * 01: 在岗 02: 已离职
     */
    @Column(name = "zgzt", length = 2)
    @PropertyDef(label = "在岗状态")
    private String zgzt;
 
    @Column(name = "lzrq")
    @PropertyDef(label = "离职日期")
    @JsonFormat(shape = JsonFormat.Shape.STRING, pattern = "yyyy-MM-dd", timezone = "GMT+8")
    private Date lzrq;
 
    @Column(name = "zjdh", length = 16)
    @PropertyDef(label = "座机电话")
    private String zjdh;
 
    @Column(name = "yddh", length = 16)
    @PropertyDef(label = "移动电话")
    private String yddh;
 
    @Column(name = "dzyx", length = 32)
    @PropertyDef(label = "电子邮箱")
    private String dzyx;
 
    @Column(name = "mz", length = 2)
    @PropertyDef(label = "民族")
    private String mz;
 
    @Column(name = "zzmm", length = 2)
    @PropertyDef(label = "政治面貌")
    private String zzmm;
 
    @Column(name = "rylb", length = 4)
    @PropertyDef(label = "人员类别")
    private String rylb;
 
    @Column(name = "zy", length = 128)
    @PropertyDef(label = "专业")
    private String zy;
 
    @Column(name = "qdzgzchzyzgsj")
    @PropertyDef(label = "取得最高职称或职业资格时间")
    @JsonFormat(shape = JsonFormat.Shape.STRING, pattern = "yyyy-MM-dd", timezone = "GMT+8")
    private Date qdzgzchzyzgsj;
 
    @Column(name = "xl", length = 1)
    @PropertyDef(label = "学历")
    private String xl;
 
    @Column(name = "zw", length = 16)
    @PropertyDef(label = "职务")
    private String zw;
 
    @Column(name = "UPDATE_TIME_")
    @PropertyDef(label = "更新时间")
    private Date updateTime;
 
 
}