| package com.fzzy.push.sh2023.dto; | 
|   | 
| import com.alibaba.fastjson.annotation.JSONField; | 
| import com.bstek.dorado.annotation.PropertyDef; | 
| import lombok.Data; | 
|   | 
| import java.io.Serializable; | 
| import java.util.Date; | 
|   | 
| /** | 
|  * 定化水检验 | 
|  * | 
|  * @Author:YAN | 
|  */ | 
| @Data | 
| public class SH2023Api2204 implements Serializable { | 
|   | 
|     /** | 
|      * | 
|      */ | 
|     private static final long serialVersionUID = 4416097604510905407L; | 
|   | 
|     @PropertyDef(label = "质检报告单号") | 
|     private String zjbgdh; | 
|   | 
|     @PropertyDef(label = "货位代码") | 
|     private String hwdm; | 
|   | 
|     @PropertyDef(label = "统一货位编码" ) | 
|     private String tyhwbm; | 
|   | 
|     @PropertyDef(label = "粮食性质代码") | 
|     private String lsxzdm; | 
|   | 
|     @PropertyDef(label = "粮食品种代码") | 
|     private String lspzdm; | 
|   | 
|     @PropertyDef(label = "粮食等级代码") | 
|     private String lsdjdm; | 
|   | 
|     @PropertyDef(label = "检验时间") | 
|     @JSONField(format = "yyyy-MM-dd") | 
|     private Date jysj; | 
|   | 
|     @PropertyDef(label = "检验人") | 
|     private String jyr; | 
|   | 
|     @PropertyDef(label = "检验依据") | 
|     private String jyyj; | 
|   | 
|     @PropertyDef(label = "水分") | 
|     private double sf; | 
|   | 
|     @PropertyDef(label = "入库水分") | 
|     private double rksf; | 
|   | 
|     @PropertyDef(label = "扦样时间") | 
|     @JSONField(format = "yyyy-MM-dd HH:mm:ss") | 
|     private Date qysj; | 
|   | 
|     @PropertyDef(label = "来粮代码") | 
|     private String lldm; | 
|   | 
|     @PropertyDef(label = "备注") | 
|     private String bz; | 
|   | 
|     @PropertyDef(label = "操作标志") | 
|     private String czbz; | 
|   | 
|     @PropertyDef(label = "最后更新时间") | 
|     @JSONField(format = "yyyy-MM-dd HH:mm:ss") | 
|     private Date zhgxsj; | 
|   | 
|     @PropertyDef(label = "标记位") | 
|     private String bjw; | 
|   | 
|     @PropertyDef(label = "批次号") | 
|     private String pch; | 
|   | 
| } |