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/25 14:22 */ @Data public class SX2023Api1208 implements Serializable { @PropertyDef(label = "货位代码") @JsonProperty("HWDM") private String hwdm; @PropertyDef(label = "粮食品种代码") @JsonProperty("LSPZDM") private String lspzdm; @PropertyDef(label = "粮食性质代码") @JsonProperty("LSXZDM") private String lsxzdm; @PropertyDef(label = "粮食等级代码") @JsonProperty("LSDJDM") private String lsdjdm; @PropertyDef(label = "收获年度") @JsonProperty("SHND") private String shnd; @PropertyDef(label = "国别") @JsonProperty("GB") private String gb; @PropertyDef(label = "产地") @JsonProperty("CD") private String cd; @PropertyDef(label = "保管员") @JsonProperty("BGY") private String bgy; @PropertyDef(label = "粮权归属单位代码") @JsonProperty("LQGSDWDM") private String lqgsdwdm; @PropertyDef(label = "管理方式") @JsonProperty("GLFS") private String glfs; @PropertyDef(label = "收储地点") @JsonProperty("SCDD") private String scdd; @PropertyDef(label = "储粮方式") @JsonProperty("CLFS") private String clfs; @PropertyDef(label = "货位(油罐)状态") @JsonProperty("CLFS") private String hwzt; @JSONField(format = "yyyy-MM-dd HH:mm:ss") @PropertyDef(label = "入仓时间") @JsonProperty("RCSJ") private Date rcsj; @JSONField(format = "yyyy-MM-dd") @PropertyDef(label = "封仓日期") @JsonProperty("FCRQ") private Date fcrq; @JSONField(format = "yyyy-MM-dd HH:mm:ss") @PropertyDef(label = "出仓完成时间") @JsonProperty("CCWCSJ") private Date ccwcsj; @JSONField(format = "yyyy-MM-dd HH:mm:ss") @PropertyDef(label = "清仓时间") @JsonProperty("QCSJ") private Date qcsj; @PropertyDef(label = "成货位前损耗(公斤)") @JsonProperty("CHWQSH") private Double chwqsh; @PropertyDef(label = "实际数量(公斤)") @JsonProperty("SJSL") private Double sjsl; @PropertyDef(label = "计价数量(公斤)") @JsonProperty("JJSL") private Double jjsl; @PropertyDef(label = "包存粮包数(包)") @JsonProperty("BCLBS") private Integer bclbs; @PropertyDef(label = "实际装粮线高(米)") @JsonProperty("SJZLXG") private Double sjzlxg; @PropertyDef(label = "粮堆体积(立方米)") @JsonProperty("SJZLXG") private Double ldtj; @PropertyDef(label = "备注") @JsonProperty("BZ") private String bz; @PropertyDef(label = "操作标志") @JsonProperty("CZBZ") private String czbz; @JSONField(format = "yyyy-MM-dd HH:mm:ss") @PropertyDef(label = "更新时间") @JsonProperty("ZHGXSJ") private Date zhgxsj; }