package com.fzzy.push.sx2025.data;
|
|
import com.alibaba.fastjson.annotation.JSONField;
|
import com.bstek.dorado.annotation.PropertyDef;
|
import lombok.Data;
|
import java.io.Serializable;
|
import java.util.Date;
|
|
/**
|
* @Description 陕西省平台2025版-空仓验收表
|
* @Author CZT
|
* @Date 2025/10/31 15:09
|
*/
|
@Data
|
public class SX2025Api1214 implements Serializable {
|
|
@PropertyDef(label = "空仓验收单号", description = "验收申请日期yyyyMMdd + 4位顺序号")
|
private String kcysdh;
|
|
@PropertyDef(label = "统一货位编码")
|
private String tyhwbm;
|
|
@PropertyDef(label = "拟存品种代码")
|
private String lspzdm;
|
|
@PropertyDef(label = "粮食等级代码")
|
private String lsdjdm;
|
|
@PropertyDef(label = "设计仓容")
|
private Double sjcr;
|
|
@PropertyDef(label = "实际储粮品种最大仓容")
|
private Double sjclzdcr;
|
|
@PropertyDef(label = "拟储粮数量")
|
private Double jysj;
|
|
@PropertyDef(label = "储存方式", description = "1-包装 2-散装 3-包围散存")
|
private String jydw;
|
|
@PropertyDef(label = "仓房地坪完好情况")
|
private String dpwhqk;
|
|
@PropertyDef(label = "仓房墙体完好情况")
|
private String qtwhqk;
|
|
@PropertyDef(label = "仓房屋面完好情况")
|
private String wmwhqk;
|
|
@PropertyDef(label = "仓房门窗完好情况")
|
private String mcwhqk;
|
|
@PropertyDef(label = "仓房是否擅自改变仓房结构")
|
private String sfszgd;
|
|
@PropertyDef(label = "防雀网完好情况")
|
private String fqwwhqk;
|
|
@PropertyDef(label = "防虫线完好情况")
|
private String fcxwhqk;
|
|
@PropertyDef(label = "防鼠板完好情况")
|
private String fsbwhqk;
|
|
@PropertyDef(label = "通风技术手段")
|
private String tfjssd;
|
|
@PropertyDef(label = "通风系统是否完好")
|
private String tfxtsfwh;
|
|
@PropertyDef(label = "熏蒸技术手段")
|
private String xzjssd;
|
|
@PropertyDef(label = "粮情检测手段")
|
private String lqjcsd;
|
|
@PropertyDef(label = "粮情检测系统是否完好")
|
private String lqjcxtsfwh;
|
|
@PropertyDef(label = "仓门档粮设施是否完好")
|
private String cmdlsssfwh;
|
|
@PropertyDef(label = "是否清消")
|
private String sfqx;
|
|
@JSONField(format = "yyyy-MM-dd")
|
@PropertyDef(label = "验收时间")
|
private Date yssj;
|
|
@PropertyDef(label = "验收结论")
|
private String ysjl;
|
|
@PropertyDef(label = "整改意见")
|
private String zgyj;
|
|
@PropertyDef(label = "承储单位负责人")
|
private String ccdwfzr;
|
|
@PropertyDef(label = "验收人")
|
private String ysr;
|
|
@PropertyDef(label = "验收视频照片")
|
private String ysspzp;
|
|
@PropertyDef(label = "备注")
|
private String bz;
|
|
@PropertyDef(label = "操作标志")
|
private String czbz;
|
|
@JSONField(format = "yyyy-MM-dd HH:mm:ss")
|
@PropertyDef(label = "最后更新时间")
|
private Date zhgxsj;
|
}
|