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/25 14:25
|
*/
|
@Data
|
public class SX2024Api1310 implements Serializable {
|
|
@PropertyDef(label = "货位代码")
|
@JsonProperty("HWDM")
|
private String hwdm;
|
|
@PropertyDef(label = "统一货位代码")
|
@JsonProperty("TYHWBM")
|
private String tyhwbm;
|
|
@PropertyDef(label = "质检报告单号")
|
@JsonProperty("ZJBGDH")
|
private String zjbgdh;
|
|
@PropertyDef(label = "粮食品种代码")
|
@JsonProperty("LSPZDM")
|
private String lspzdm;
|
|
@PropertyDef(label = "粮食等级代码")
|
@JsonProperty("LSDJDM")
|
private String lsdjdm;
|
|
@JSONField(format = "yyyy-MM-dd")
|
@PropertyDef(label = "入库日期")
|
@JsonProperty("RKRQ")
|
private Date rkrq;
|
|
@PropertyDef(label = "检验类别")
|
@JsonProperty("JYLB")
|
private String jylb;
|
|
@JSONField(format = "yyyy-MM-dd HH:mm:ss")
|
@PropertyDef(label = "检验时间")
|
@JsonProperty("JYSJ")
|
private Date jysj;
|
|
@PropertyDef(label = "检验单位")
|
@JsonProperty("JYDW")
|
private String jydw;
|
|
@PropertyDef(label = "检验人")
|
@JsonProperty("JYR")
|
private String jyr;
|
|
@PropertyDef(label = "检验依据")
|
@JsonProperty("JYYJ")
|
private String jyyj;
|
|
@PropertyDef(label = "指标类别")
|
@JsonProperty("ZBLB")
|
private String zblb;
|
|
@PropertyDef(label = "检验项目")
|
@JsonProperty("JYXM")
|
private String jyxm;
|
|
@PropertyDef(label = "检验项目值")
|
@JsonProperty("JYXMZ")
|
private String jyxmz;
|
|
@PropertyDef(label = "指标结果判定")
|
@JsonProperty("ZBJGPD")
|
private String zbjgpd;
|
|
@PropertyDef(label = "食品安全指标是否合格")
|
@JsonProperty("SPAQZBSFHG")
|
private String spaqzbsfhg;
|
|
@JSONField(format = "yyyy-MM-dd")
|
@PropertyDef(label = "签发日期")
|
@JsonProperty("QFRQ")
|
private Date qfrq;
|
|
@JSONField(format = "yyyy-MM-dd HH:mm:ss")
|
@PropertyDef(label = "报告出具时间")
|
@JsonProperty("BGCJSJ")
|
private Date bgcjsj;
|
|
@PropertyDef(label = "审核人姓名")
|
@JsonProperty("SHRXM")
|
private String shrxm;
|
|
@PropertyDef(label = "扦样单编号")
|
@JsonProperty("QYDBH")
|
private String qydbh;
|
|
@JSONField(format = "yyyy-MM-dd HH:mm:ss")
|
@PropertyDef(label = "扦样时间")
|
@JsonProperty("QYSJ")
|
private Date qysj;
|
|
@PropertyDef(label = "扦样区域")
|
@JsonProperty("QYQY")
|
private String qyqy;
|
|
@PropertyDef(label = "扦样人姓名")
|
@JsonProperty("QYRXM")
|
private String qyrxm;
|
|
@PropertyDef(label = "监督人姓名")
|
@JsonProperty("JDRXM")
|
private String jdrxm;
|
|
@PropertyDef(label = "样品编号")
|
@JsonProperty("YPBH")
|
private String ypbh;
|
|
@PropertyDef(label = "样品数量")
|
@JsonProperty("YPSL")
|
private Double ypsl;
|
|
@PropertyDef(label = "代表数量")
|
@JsonProperty("DBSL")
|
private Double dbsl;
|
|
@PropertyDef(label = "样品等级")
|
@JsonProperty("YPDJ")
|
private String ypdj;
|
|
@PropertyDef(label = "是否正常存储年限")
|
@JsonProperty("SFZCCCNX")
|
private String sfzcccnx;
|
|
@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;
|
|
}
|