package com.fzzy.push.sx2023.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
|
* @Author CZT
|
* @Date 2024/4/24 21:12
|
*/
|
@Data
|
public class SX2023Api1112 implements Serializable {
|
|
@PropertyDef(label = "单位代码")
|
@JsonProperty("DWDM")
|
private String dwdm;
|
|
@PropertyDef(label = "单位名称")
|
@JsonProperty("DWMC")
|
private String dwmc;
|
|
@PropertyDef(label = "库区代码")
|
@JsonProperty("KQDM")
|
private String kqdm;
|
|
@PropertyDef(label = "隶属部门")
|
@JsonProperty("LSBM")
|
private String lsbm;
|
|
@PropertyDef(label = "行政区划代码")
|
@JsonProperty("XZQHDM")
|
private String xzqhdm;
|
|
@PropertyDef(label = "姓名")
|
@JsonProperty("XM")
|
private String xm;
|
|
@PropertyDef(label = "性别")
|
@JsonProperty("XB")
|
private String xb;
|
|
@PropertyDef(label = "身份证号码")
|
@JsonProperty("SFZHM")
|
private String sfzhm;
|
|
@PropertyDef(label = "入职日期")
|
@JSONField(format = "yyyy-MM-dd")
|
@JsonProperty("RZRQ")
|
private Date rzrq;
|
|
@PropertyDef(label = "岗位性质")
|
@JsonProperty("GWXZ")
|
private String gwxz;
|
|
@PropertyDef(label = "在岗状态")
|
@JsonProperty("ZGZT")
|
private String zgzt;
|
|
@PropertyDef(label = "离职日期")
|
@JSONField(format = "yyyy-MM-dd")
|
@JsonProperty("LZRQ")
|
private Date lzrq;
|
|
@PropertyDef(label = "座机电话")
|
@JsonProperty("ZJDH")
|
private String zjdh;
|
|
@PropertyDef(label = "移动电话")
|
@JsonProperty("YDDH")
|
private String yddh;
|
|
@PropertyDef(label = "电子邮箱")
|
@JsonProperty("DZYX")
|
private String dzyx;
|
|
@PropertyDef(label = "民族")
|
@JsonProperty("MZ")
|
private String mz;
|
|
@PropertyDef(label = "政治面貌")
|
@JsonProperty("ZZMM")
|
private String zzmm;
|
|
@PropertyDef(label = "人员类别")
|
@JsonProperty("RYLB")
|
private String rylb;
|
|
@PropertyDef(label = "专业")
|
@JsonProperty("ZY")
|
private String zy;
|
|
@PropertyDef(label = "取得最高职称或职业资格时间")
|
@JSONField(format = "yyyy-MM-dd")
|
@JsonProperty("QDZGZCHZYZGSJ")
|
private Date qdzgzchzyzgsj;
|
|
@PropertyDef(label = "学历")
|
@JsonProperty("XL")
|
private String xl;
|
|
@PropertyDef(label = "职务")
|
@JsonProperty("ZW")
|
private String zw;
|
|
@PropertyDef(label = "操作标志")
|
@JsonProperty("CZBZ")
|
private String czbz;
|
|
@PropertyDef(label = "最后更新时间")
|
@JSONField(format = "yyyy-MM-dd HH:mm:ss")
|
@JsonProperty("ZHGXSJ")
|
private Date zhgxsj;
|
|
}
|