czt
2025-10-31 0f2d30660621ba143d5df99eab785015b0509520
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
package com.fzzy.push.sx2025.data;
 
import com.alibaba.fastjson.annotation.JSONField;
import com.bstek.dorado.annotation.PropertyDef;
import com.fasterxml.jackson.annotation.JsonProperty;
import lombok.Data;
 
import java.io.Serializable;
import java.util.Date;
 
/**
 * @Description 陕西省平台2025版-人员信息
 * @Author CZT
 * @Date 2025/10/29 18:07
 */
@Data
public class SX2025Api1112 implements Serializable {
 
    @PropertyDef(label = "统一单位编码")
    private String tydwbm;
 
    @PropertyDef(label = "统一库区编码")
    private String tykqbm;
 
    @PropertyDef(label = "单位名称")
    private String dwmc;
 
    @PropertyDef(label = "隶属部门")
    private String lsbm;
 
    @PropertyDef(label = "行政区划代码")
    private String xzqhdm;
 
    @PropertyDef(label = "姓名")
    private String xm;
 
    @PropertyDef(label = "性别")
    private String xb;
 
    @PropertyDef(label = "身份证号码")
    private String sfzhm;
 
    @PropertyDef(label = "证件照")
    private String zjz;
 
    @PropertyDef(label = "入职日期")
    @JSONField(format = "yyyy-MM-dd")
    private Date rzrq;
 
    @PropertyDef(label = "岗位性质")
    private String gwxz;
 
    @PropertyDef(label = "在岗状态")
    private String zgzt;
 
    @PropertyDef(label = "离职日期")
    @JSONField(format = "yyyy-MM-dd")
    private Date lzrq;
 
    @PropertyDef(label = "座机电话")
    private String zjdh;
 
    @PropertyDef(label = "移动电话")
    private String yddh;
 
    @PropertyDef(label = "电子邮箱")
    private String dzyx;
 
    @PropertyDef(label = "民族")
    private String mz;
 
    @PropertyDef(label = "政治面貌")
    private String zzmm;
 
    @PropertyDef(label = "人员类别")
    private String rylb;
 
    @PropertyDef(label = "专业")
    private String zy;
 
    @PropertyDef(label = "取得最高职称或职业资格时间")
    @JSONField(format = "yyyy-MM-dd")
    private Date qdzgzchzyzgsj;
 
    @PropertyDef(label = "最高学历")
    private String zgxl;
 
    @PropertyDef(label = "取得学历时间")
    @JSONField(format = "yyyy-MM-dd")
    private Date qdxlsj;
 
    @PropertyDef(label = "职务职级")
    private String zwzj;
 
    @PropertyDef(label = "工作简历")
    private String gzjl;
 
    @PropertyDef(label = "曾受表彰情况")
    private String csbzqk;
 
    @PropertyDef(label = "操作标志")
    private String czbz;
 
    @PropertyDef(label = "最后更新时间")
    @JSONField(format = "yyyy-MM-dd HH:mm:ss")
    private Date zhgxsj;
 
}