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:25
|
*/
|
@Data
|
public class SX2025Api1217 implements Serializable {
|
|
@PropertyDef(label = "轮换验收单号", description = "验收申请日期yyyyMMdd + 4位顺序号")
|
private String dcysdh;
|
|
@PropertyDef(label = "承储单位")
|
private String ccdw;
|
|
@PropertyDef(label = "计划文号")
|
private String jhwh;
|
|
@PropertyDef(label = "计划安排仓房统一货位编码")
|
private String dctyhwbm;
|
|
@PropertyDef(label = "计划安排粮食品种代码")
|
private String dclspzdm;
|
|
@PropertyDef(label = "计划安排粮食等级代码")
|
private String dclsdjdm;
|
|
@PropertyDef(label = "计划安排粮食生产年度")
|
private String dclsscnd;
|
|
@PropertyDef(label = "计划安排粮食数量(吨)")
|
private Double dclssl;
|
|
@PropertyDef(label = "实际执行仓房统一货位编码")
|
private String drtyhwbm;
|
|
@PropertyDef(label = "实际执行粮食品种代码")
|
private String drlspzdm;
|
|
@PropertyDef(label = "实际执行粮食等级代码")
|
private String drlsdjdm;
|
|
@PropertyDef(label = "实际执行粮食数量(吨)")
|
private Double drlssl;
|
|
@PropertyDef(label = "实际执行粮食库存成本(元/吨)")
|
private Double drlskccb;
|
|
@PropertyDef(label = "实际执行粮食生产年度")
|
private String drlsscnd;
|
|
@JSONField(format = "yyyy-MM-dd HH:mm:ss")
|
@PropertyDef(label = "实际执行入库时间")
|
private Date rksj;
|
|
@JSONField(format = "yyyy-MM-dd HH:mm:ss")
|
@PropertyDef(label = "实际执行完成时间")
|
private Date wcsj;
|
|
@PropertyDef(label = "验收结论")
|
private String ysjl;
|
|
@JSONField(format = "yyyy-MM-dd")
|
@PropertyDef(label = "验收时间")
|
private Date yssj;
|
|
@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;
|
}
|