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 SH2023Api2104 implements Serializable { private static final long serialVersionUID = 9157617424050247565L; @PropertyDef(label = "驳运单号") private String bydh; @PropertyDef(label = "库区代码") private String kqdm; @PropertyDef(label = "记账日期") @JSONField(format = "yyyy-MM-dd") private Date jzrq; @PropertyDef(label = "客户编号") private String khmc; @PropertyDef(label = "来粮预报号/提货单号") private String psplan; @PropertyDef(label = "合同号") private String hth; @PropertyDef(label = "车船号") private String cch; @PropertyDef(label = "品种大类") private String lspzdm; @PropertyDef(label = "粮食性质代码") private String lsxzdm; @PropertyDef(label = "来粮代码") private String lldm; @PropertyDef(label = "净重") private Double jz; @PropertyDef(label = "数据状态") private String czbz; @PropertyDef(label = "最后更新时间") @JSONField(format = "yyyy-MM-dd HH:mm:ss") private Date zhgxsh; @PropertyDef(label = "批次号") private String pch; @PropertyDef(label = "标记位") private String bjw; }