package com.fzzy.push.sx2024.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 9:12
|
*/
|
@Data
|
public class SX2024Api1101 implements Serializable {
|
|
@PropertyDef(label = "统一单位编码")
|
@JsonProperty("TYDWBM")
|
private String tydwbm;
|
|
@PropertyDef(label = "单位代码")
|
@JsonProperty("DWDM")
|
private String dwdm;
|
|
@PropertyDef(label = "单位编码--11位")
|
@JsonProperty("DWBM")
|
private String dwbm;
|
|
@PropertyDef(label = "上级单位统一编码")
|
@JsonProperty("SJDWTYBM")
|
private String sjdwtybm;
|
|
@PropertyDef(label = "统一单位名称")
|
@JsonProperty("TYDWMC")
|
private String tydwmc;
|
|
@PropertyDef(label = "单位名称")
|
@JsonProperty("DWMC")
|
private String dwmc;
|
|
@PropertyDef(label = "单位类型")
|
@JsonProperty("DWLX")
|
private String dwlx;
|
|
@PropertyDef(label = "注册日期")
|
@JSONField(format = "yyyy-MM-dd")
|
@JsonProperty("ZCRQ")
|
private Date zcrq;
|
|
@PropertyDef(label = "注册资本")
|
@JsonProperty("ZCZB")
|
private Double zczb;
|
|
@PropertyDef(label = "资产总额")
|
@JsonProperty("ZCZE")
|
private Double zcze;
|
|
@PropertyDef(label = "法定代表人")
|
@JsonProperty("FDDBR")
|
private String fddbr;
|
|
@PropertyDef(label = "法人身份证号")
|
@JsonProperty("FRSFZH")
|
private String frsfzh;
|
|
@PropertyDef(label = "法人联系方式")
|
@JsonProperty("FRLXFS")
|
private String frlxfs;
|
|
@PropertyDef(label = "企业联系人")
|
@JsonProperty("QYLXR")
|
private String qylxr;
|
|
@PropertyDef(label = "办公电话")
|
@JsonProperty("BGDH")
|
private String bgdh;
|
|
@PropertyDef(label = "注册地址")
|
@JsonProperty("ZCDZ")
|
private String zcdz;
|
|
@PropertyDef(label = "电子邮箱")
|
@JsonProperty("DZYX")
|
private String dzyx;
|
|
@PropertyDef(label = "企业官方网站地址")
|
@JsonProperty("QYGFWZDZ")
|
private String qygfwzdz;
|
|
@PropertyDef(label = "传真号码")
|
@JsonProperty("CZHM")
|
private String czhm;
|
|
@PropertyDef(label = "邮政编码")
|
@JsonProperty("YZBM")
|
private String yzbm;
|
|
@PropertyDef(label = "行政区划代码")
|
@JsonProperty("XZQHDM")
|
private String xzqhdm;
|
|
@PropertyDef(label = "上级单位名称")
|
@JsonProperty("SJDWMC")
|
private String sjdwmc;
|
|
@PropertyDef(label = "上级单位代码")
|
@JsonProperty("SJDWDM")
|
private String sjdwdm;
|
|
@PropertyDef(label = "库区数")
|
@JsonProperty("KQS")
|
private Integer kqs;
|
|
@PropertyDef(label = "仓房数")
|
@JsonProperty("CFS")
|
private Integer cfs;
|
|
@PropertyDef(label = "油罐数")
|
@JsonProperty("YGS")
|
private Integer ygs;
|
|
@PropertyDef(label = "经度")
|
@JsonProperty("JD")
|
private Double jd;
|
|
@PropertyDef(label = "纬度")
|
@JsonProperty("WD")
|
private Double wd;
|
|
@PropertyDef(label = "单位状态")
|
@JsonProperty("DWZT")
|
private String dwzt;
|
|
@PropertyDef(label = "操作标志")
|
@JsonProperty("CZBZ")
|
private String czbz;
|
|
@PropertyDef(label = "最后更新时间")
|
@JSONField(format = "yyyy-MM-dd HH:mm:ss")
|
@JsonProperty("ZHGXSJ")
|
private Date zhgxsj;
|
|
}
|