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 20:46
|
*/
|
@Data
|
public class SX2023Api1102 implements Serializable {
|
|
@PropertyDef(label = "单位代码")
|
@JsonProperty("DWDM")
|
private String dwdm;
|
|
@PropertyDef(label = "库区代码")
|
@JsonProperty("KQDM")
|
private String kqdm;
|
|
@PropertyDef(label = "库区名称")
|
@JsonProperty("KQMC")
|
private String kqmc;
|
|
@PropertyDef(label = "库区地址")
|
@JsonProperty("KQDZ")
|
private String kqdz;
|
|
@PropertyDef(label = "行政区划代码")
|
@JsonProperty("XZQHDM")
|
private String xzqhdm;
|
|
@PropertyDef(label = "库区产权", description = "1: 自有 2:租赁 3:共有 4:混合 9:其他")
|
@JsonProperty("KQCQ")
|
private String kqcq;
|
|
@PropertyDef(label = "有效仓容")
|
@JsonProperty("YXCR")
|
private Double yxcr;
|
|
@PropertyDef(label = "有效罐容")
|
@JsonProperty("YXGR")
|
private Double yxgr;
|
|
@PropertyDef(label = "占地面积")
|
@JsonProperty("ZDMJ")
|
private Double zdmj;
|
|
@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 = "库区状态", description = "1:正常(默认) 2:退出储备粮承储")
|
@JsonProperty("KQZT")
|
private String kqzt;
|
|
@PropertyDef(label = "操作标志")
|
@JsonProperty("CZBZ")
|
private String czbz;
|
|
@PropertyDef(label = "最后更新时间")
|
@JSONField(format = "yyyy-MM-dd HH:mm:ss")
|
@JsonProperty("ZHGXSJ")
|
private Date zhgxsj;
|
}
|