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 21:20 */ @Data public class SX2024Api1203 implements Serializable { @PropertyDef(label = "货位代码") @JsonProperty("HWDM") private String hwdm; @PropertyDef(label = "统一货位编码") @JsonProperty("TYHWBM") private String tyhwbm; @PropertyDef(label = "入库检验单号") @JsonProperty("RKJYDH") private String rkjydh; @PropertyDef(label = "入库业务单号") @JsonProperty("RKYWDH") private String rkywdh; @JSONField(format = "yyyy-MM-dd HH:mm:ss") @PropertyDef(label = "扦样时间") @JsonProperty("QYSJ") private Date qysj; @PropertyDef(label = "扦样人姓名") @JsonProperty("QYRXM") private String qyrxm; @PropertyDef(label = "扦样方式") @JsonProperty("QYFS") private String qyfs; @PropertyDef(label = "检验项目,隔开") @JsonProperty("JYXM") private String jyxm; @PropertyDef(label = "检验值,隔开") @JsonProperty("JYZ") private String jyz; @PropertyDef(label = "增扣价(元,隔开)") @JsonProperty("ZKJ") private String zkj; @PropertyDef(label = "增扣量(公斤,隔开)") @JsonProperty("ZKL") private String zkl; @PropertyDef(label = "检验人姓名") @JsonProperty("JYRXM") private String jyrxm; @JSONField(format = "yyyy-MM-dd HH:mm:ss") @PropertyDef(label = "检验时间") @JsonProperty("JYSJ") private Date jysj; @PropertyDef(label = "检验结果") @JsonProperty("JYJG") private String jyjg; @PropertyDef(label = "食品安全指标是否合格") @JsonProperty("SPAQZBSFHG") private String spaqzbsfhg; @PropertyDef(label = "粮食品种代码") @JsonProperty("LSPZDM") private String lspzdm; @PropertyDef(label = "粮食定等") @JsonProperty("LSDD") private String lsdd; @PropertyDef(label = "保管员复核") @JsonProperty("BGYFH") private String bgyfh; @PropertyDef(label = "操作标志") @JsonProperty("CZBZ") private String czbz; @JSONField(format = "yyyy-MM-dd HH:mm:ss") @PropertyDef(label = "更新时间") @JsonProperty("ZHGXSJ") private Date zhgxsj; }