YYC
14 小时以前 de287cae3f20e9dc208cf028af8adf2c46a3c875
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
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;
}