jiazx0107@163.com
2023-11-17 17150987f4f80e9c624521c560dd7db6cc20834d
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
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
package com.fzzy.api.entity;
 
import com.alibaba.fastjson.annotation.JSONField;
import com.bstek.dorado.annotation.PropertyDef;
 
import lombok.Data;
import lombok.EqualsAndHashCode;
 
import javax.persistence.*;
 
import java.io.Serializable;
import java.util.Date;
 
/**
 * 接口表-熏蒸作业数据表
 *
 * @author chen
 * @date 2022-09-02 16:21
 */
@Data
@Entity
@Table(name = "API_1306")
@EqualsAndHashCode(callSuper=false)
public class Api1306 extends ApiParent implements Serializable {
 
    /**
     * 
     */
    private static final long serialVersionUID = 1L;
 
    @Id
    @PropertyDef(label = "熏蒸作业单号" )
    @Column(name = "xzzydh", length = 36)
    private String xzzydh;
 
    @PropertyDef(label = "仓房代码" )
    @Column(name = "cfdm", length = 25)
    private String cfdm;
 
    @JSONField(format = "yyyy-MM-dd")
    @PropertyDef(label = "熏蒸开始时间" )
    @Column(name = "xzkssj")
    private Date xzkssj;
 
    @JSONField(format = "yyyy-MM-dd")
    @PropertyDef(label = "熏蒸结束时间" )
    @Column(name = "xzjssj")
    private Date xzjssj;
 
    @PropertyDef(label = "害虫检测单号" )
    @Column(name = "hcjcdh", length = 42)
    private String hcjcdh;
 
    @PropertyDef(label = "封仓后熏蒸的次数 第几次熏蒸" )
    @Column(name = "djcxz")
    private Integer djcxz;
 
    @PropertyDef(label = "常规熏蒸方式" )
    @Column(name = "cgxzfs", length = 1)
    private String cgxzfs;
 
    @PropertyDef(label = "环流熏蒸方式" )
    @Column(name = "hlxzfs", length = 1)
    private String hlxzfs;
 
    @PropertyDef(label = "环流熏蒸与内环流技术结合" )
    @Column(name = "hlxzynhljsjh", length = 1)
    private String hlxzynhljsjh;
 
    @PropertyDef(label = "熏蒸方案制定" )
    @Column(name = "xzfazd", length = 128)
    private String xzfazd;
 
    @PropertyDef(label = "熏蒸方案起草人" )
    @Column(name = "xzfaqcr", length = 64)
    private String xzfaqcr;
 
    @PropertyDef(label = "熏蒸方案批准人" )
    @Column(name = "xzfapzr", length = 64)
    private String xzfapzr;
 
    @PropertyDef(label = "熏蒸方案报备情况" )
    @Column(name = "xzfabbqk", length = 64)
    private String xzfabbqk;
 
    @PropertyDef(label = "施药人员资质情况" )
    @Column(name = "syryzzqk", length = 64)
    private String syryzzqk;
 
    @PropertyDef(label = "施药资质审核" )
    @Column(name = "syzzsh", length = 64)
    private String syzzsh;
 
    @PropertyDef(label = "药剂名称" )
    @Column(name = "yjmc", length = 64)
    private String yjmc;
 
    @PropertyDef(label = "剂型" )
    @Column(name = "jx", length = 64)
    private String jx;
 
    @PropertyDef(label = "浓度" )
    @Column(name = "nd", precision = 20, scale = 3)
    private Double nd;
 
    @PropertyDef(label = "粮堆单位用药量" )
    @Column(name = "lddwyyl", precision = 20, scale = 3)
    private Double lddwyyl;
 
    @PropertyDef(label = "空间单位用药量" )
    @Column(name = "kjdwyyl", precision = 20, scale = 3)
    private Double kjdwyyl;
 
    @PropertyDef(label = "总用药量" )
    @Column(name = "zyyl", precision = 20, scale = 3)
    private Double zyyl;
 
    @PropertyDef(label = "施药方法" )
    @Column(name = "syff", length = 1)
    private String syff;
 
    @PropertyDef(label = "辅助施药措施" )
    @Column(name = "fzsycs", length = 128)
    private String fzsycs;
 
    @PropertyDef(label = "空气呼吸器及安全检查情况" )
    @Column(name = "kqhqjaqjcqk", length = 128)
    private String kqhqjaqjcqk;
 
    @PropertyDef(label = "磷化氢检测装置调试情况" )
    @Column(name = "lhqjczztsqk", length = 128)
    private String lhqjczztsqk;
 
    @PropertyDef(label = "氧气深度检测装置调试情况" )
    @Column(name = "yqsdjczztsqk", length = 128)
    private String yqsdjczztsqk;
 
    @PropertyDef(label = "磷化氢报警仪安全检查" )
    @Column(name = "lhqbjyaqjc", length = 128)
    private String lhqbjyaqjc;
 
    @PropertyDef(label = "氧气报警仪安全检查" )
    @Column(name = "yqbjyaqjc", length = 128)
    private String yqbjyaqjc;
 
    @PropertyDef(label = "补药前仓内磷化氢浓度" )
    @Column(name = "byqcnlhqnd", precision = 20, scale = 3)
    private Double byqcnlhqnd;
 
    @PropertyDef(label = "磷化氢浓度单位",description = "1:g/m³ (默认)  2:ppm 3:ml/m³ 4:%VOL。")
    @Column(name = "nlhqnddw", length = 1)
    private String nlhqnddw;
 
    @PropertyDef(label = "目标浓度" )
    @Column(name = "mbnd", precision = 20, scale = 3)
    private Double mbnd;
 
    @PropertyDef(label = "计算补药量" )
    @Column(name = "jsbyl", precision = 20, scale = 3)
    private Double jsbyl;
 
    @PropertyDef(label = "实际补药量" )
    @Column(name = "sjbyl", precision = 20, scale = 3)
    private Double sjbyl;
 
    @PropertyDef(label = "补药方法" )
    @Column(name = "byff", length = 128)
    private String byff;
 
    @PropertyDef(label = "作业人数" )
    @Column(name = "zyrs")
    private Integer zyrs;
 
    @PropertyDef(label = "补药作业批准人" )
    @Column(name = "byzypzr", length = 64)
    private String byzypzr;
 
    @PropertyDef(label = "现场指挥人" )
    @Column(name = "xczhr", length = 64)
    private String xczhr;
 
    @PropertyDef(label = "峰值浓度" )
    @Column(name = "fznd", precision = 20, scale = 3)
    private Double fznd;
 
    @PropertyDef(label = "目标浓度维持天数" )
    @Column(name = "mbndwcts")
    private Integer mbndwcts;
 
    @PropertyDef(label = "漏气位置监测" )
    @Column(name = "lswzjc", length = 128)
    private String lswzjc;
 
    @PropertyDef(label = "漏气部位采取的补救措施" )
    @Column(name = "lqbwcqdbjcs", length = 128)
    private String lqbwcqdbjcs;
 
    @PropertyDef(label = "密闭时间" )
    @Column(name = "mbsj")
    private Integer mbsj;
 
    @PropertyDef(label = "CT值" )
    @Column(name = "ctz", precision = 20, scale = 3)
    private Double ctz;
 
    @PropertyDef(label = "散气前磷化氢浓度" )
    @Column(name = "sqqlhqnd", precision = 20, scale = 3)
    private Double sqqlhqnd;
 
    @JSONField(format = "yyyy-MM-dd")
    @PropertyDef(label = "散气日期" )
    @Column(name = "sqrq")
    private Date sqrq;
 
    @PropertyDef(label = "散气方法" )
    @Column(name = "sqff", length = 128)
    private String sqff;
 
    @PropertyDef(label = "散气批准人" )
    @Column(name = "sqpzr", length = 64)
    private String sqpzr;
 
    @PropertyDef(label = "散气持续天数" )
    @Column(name = "sqcsts")
    private Integer sqcsts;
 
    @PropertyDef(label = "散气结束时磷化氢浓度" )
    @Column(name = "sqjsslhqnd", precision = 20, scale = 3)
    private Double sqjsslhqnd;
 
    @JSONField(format = "yyyy-MM-dd")
    @PropertyDef(label = "残渣收集作业时间" )
    @Column(name = "czsjzysj")
    private Date czsjzysj;
 
    @PropertyDef(label = "残渣收集作业人数" )
    @Column(name = "czsjzyrs")
    private Integer czsjzyrs;
 
    @PropertyDef(label = "残渣收集方法" )
    @Column(name = "czsjff", length = 128)
    private String czsjff;
 
    @PropertyDef(label = "残渣收集作业批准人" )
    @Column(name = "czsjzypzr", length = 64)
    private String czsjzypzr;
 
    @PropertyDef(label = "残渣处理措施" )
    @Column(name = "czclcs", length = 128)
    private String czclcs;
 
    @PropertyDef(label = "残渣处理作业人数" )
    @Column(name = "czclzyrs")
    private Integer czclzyrs;
 
    @PropertyDef(label = "残渣处理批准人" )
    @Column(name = "czclpzr", length = 64)
    private String czclpzr;
 
    @PropertyDef(label = "熏蒸后活虫检出情况" )
    @Column(name = "xzhhcjcqk", length = 128)
    private String xzhhcjcqk;
 
    @PropertyDef(label = "熏蒸后虫口密度" )
    @Column(name = "xzhckmd")
    private Integer xzhckmd;
 
    @PropertyDef(label = "培养15天后活虫数" )
    @Column(name = "pyswthhcs")
    private Integer pyswthhcs;
 
    @PropertyDef(label = "培养45天后活虫数" )
    @Column(name = "pysswthhcs")
    private Integer pysswthhcs;
 
    @PropertyDef(label = "熏蒸效果评价" )
    @Column(name = "xzxgpj", length = 1)
    private String xzxgpj;
 
    @PropertyDef(label = "熏蒸负责人" )
    @Column(name = "xzfzr", length = 64)
    private String xzfzr;
 
    @PropertyDef(label = "熏蒸作业人员" )
    @Column(name = "xzzyry", length = 128)
    private String xzzyry;
 
    @PropertyDef(label = "操作标志" )
    @Column(name = "czbz", length = 1)
    private String czbz;
 
    @JSONField(format = "yyyy-MM-dd HH:mm:ss")
    @PropertyDef(label = "最后更新时间" )
    @Column(name = "zhgxsj")
    private Date zhgxsj;
 
    /*---------系统内使用:国标和广东熏蒸单号:仓房代码+yyyyMMdd+3位顺序号;上海熏蒸单号:货位代码+yyyyMMdd+3位顺序号----------*/
    @JSONField(serialize = false)
    @PropertyDef(label = "货位代码" )
    @Column(name = "hwdm", length = 30)
    private String hwdm;
 
}