czt
2025-06-05 00acb9d6cb8d3455e9a7c2b51722fafeb820a92c
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
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
package com.fzzy.igds.dzhwk.v1.dto;
 
import com.bstek.dorado.annotation.PropertyDef;
import lombok.Data;
 
/**
 * 接口表-充氮气调作业
 *
 */
@Data
public class ApiV1Data2008 {
 
    @PropertyDef(label = "谷冷作业单号")
    private String zydh;
 
    @PropertyDef(label = "廒间代码")
    private String ajdm;
 
    @PropertyDef(label = "通风开始时间")
    private String kssj;
 
    @PropertyDef(label = "通风结束时间")
    private String jssj;
 
    @PropertyDef(label = "粮食品种")
    private String lspzdm;
 
    @PropertyDef(label = "粮食数量")
    private String lssl;
 
    @PropertyDef(label = "仓房气密性是否达标")
    private String qmxsfdb;
 
    @PropertyDef(label = "气调目的")
    private String qtmd;
 
    @PropertyDef(label = "粮堆密闭方式")
    private Double mbfs;
 
    @PropertyDef(label = "设定氮气浓度")
    private Double sddqnd;
    
    @PropertyDef(label = "充气方式")
    private String cqfs;
 
    @PropertyDef(label = "累计气调时间")
    private Double ljqtsj;
 
    @PropertyDef(label = "气调期间大气温度最高值")
    private Double wwzgz;
 
    @PropertyDef(label = "气调期间大气温度最低值")
    private Double wwzdz;
 
    @PropertyDef(label = "气调期间大气温度平均值")
    private Double wwpjz;
 
    @PropertyDef(label = "气调期间仓内温度最高值")
    private Double cnwwzgz;
 
    @PropertyDef(label = "气调期间仓内温度最低值")
    private Double cnwwzdz;
 
    @PropertyDef(label = "气调期间仓内温度平均值")
    private Double cnwwpjz;
 
    @PropertyDef(label = "气调期间仓内湿度最高值")
    private Double cnwszgz;
 
    @PropertyDef(label = "气调期间仓内湿度最低值")
    private Double cnwszdz;
 
    @PropertyDef(label = "气调期间仓内湿度平均值")
    private Double cnwspjz;
 
    @PropertyDef(label = "气调期间粮堆氮气浓度最高值")
    private Double ldndzgz;
 
    @PropertyDef(label = "气调期间粮堆氮气浓度最低值")
    private Double ldndzdz;
 
    @PropertyDef(label = "气调期间粮堆氮气浓度平均值")
    private Double ldndpjz;
    
    @PropertyDef(label = "气调前粮温最高值")
    private Double qtqlwzgz;
 
    @PropertyDef(label = "气调前粮温最低值")
    private Double qtqlwzdz;
 
    @PropertyDef(label = "气调前粮温平均")
    private Double qtqlwpjz;
 
    @PropertyDef(label = "气调后粮温最高值")
    private Double qthlwzgz;
 
    @PropertyDef(label = "气调后粮温最低值")
    private Double qthlwzdz;
 
    @PropertyDef(label = "气调后粮温平均")
    private Double qthlwpjz;
 
    @PropertyDef(label = "气调前粮水分最高值")
    private Double qtqsfzgz;
 
    @PropertyDef(label = "气调前粮水分最低值")
    private Double qtqsfzdz;
 
    @PropertyDef(label = "气调前粮水分平均")
    private Double qtqsfpjz;
 
    @PropertyDef(label = "气调后粮水分最高值")
    private Double qthsfzgz;
 
    @PropertyDef(label = "气调后粮水分最低值")
    private Double qthsfzdz;
 
    @PropertyDef(label = "气调后粮水分平均")
    private Double qthsfpjz;
 
    @PropertyDef(label = "气调前虫害情况")
    private String qtqchqk;
 
    @PropertyDef(label = "气调后虫害情况")
    private String qthchqk;
 
    @PropertyDef(label = "气调间异常情况描述")
    private String ycms;
 
    @PropertyDef(label = "czr")
    private String 操作人;
 
    @PropertyDef(label = "备注")
    private Integer bz;
 
    @PropertyDef(label = "更新时间")
    private String zhgxsj;
 
}