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; /** * @Description 数据相符性接口 * @Author CZT * @Date 2024/6/28 15:35 */ @Data public class SH2023Api1115 implements Serializable { private static final long serialVersionUID = 9157617424050247565L; @PropertyDef(label = "库区代码") private String kqdm; @PropertyDef(label = "库区名称" ) private String kqmc; @PropertyDef(label = "上级单位名称") private String sjdwmc; @PropertyDef(label = "仓房数") private String cfs; @PropertyDef(label = "廒间数") private String ajs; @PropertyDef(label = "货位数") private String hws; @PropertyDef(label = "入库检斤条数") private String rkts; @PropertyDef(label = "出库检斤条数") private String ckts; @PropertyDef(label = "库存数量") private String kcsl; @PropertyDef(label = "库存条数") private String kcts; @PropertyDef(label = "上传粮情廒间数") private String sclqajs; @PropertyDef(label = "上传仓内图像廒间数") private String sccntxajs; @PropertyDef(label = "数据统计时间") @JSONField(format = "yyyy-MM-dd HH:mm:ss") private Date sjtjsj; @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 = "合同数", description = "关联本轮换年度合同总数") private String hts; }