czt
2025-06-05 8460849733838c9e84d1016c51f5a0e6875d0a78
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
package com.fzzy.igds.dzhwk.v1.dto;
 
import com.bstek.dorado.annotation.PropertyDef;
import lombok.Data;
 
/**
 * 接口表-熏蒸作业
 *
 */
@Data
public class ApiV1Data2006 {
 
    @PropertyDef(label = "熏蒸作业单号")
    private String xzzydh;
 
    @PropertyDef(label = "廒间代码")
    private String ajdm;
 
    @PropertyDef(label = "熏蒸开始时间")
    private String xzkssj;
 
    @PropertyDef(label = "熏蒸结束时间")
    private String xzjssj;
 
    @PropertyDef(label = "封仓后熏蒸的次数 第几次熏蒸")
    private Integer djcxz;
 
    @PropertyDef(label = "常规熏蒸方式")
    private String cgxzfs;
 
    @PropertyDef(label = "环流熏蒸方式")
    private String hlxzfs;
 
    @PropertyDef(label = "药剂名称")
    private String yjmc;
 
    @PropertyDef(label = "剂型")
    private String jx;
 
    @PropertyDef(label = "浓度")
    private Double nd;
    
    @PropertyDef(label = "总用药量")
    private Double zyyl;
 
    @PropertyDef(label = "施药方法")
    private String syff;
 
    @PropertyDef(label = "辅助施药措施")
    private String fzsycs;
 
    @PropertyDef(label = "空气呼吸器及安全检查情况")
    private String kqhqjaqjcqk;
 
    @PropertyDef(label = "磷化氢检测装置调试情况")
    private String lhqjczztsqk;
 
    @PropertyDef(label = "氧气深度检测装置调试情况")
    private String yqsdjczztsqk;
 
    @PropertyDef(label = "磷化氢报警仪安全检查")
    private String lhqbjyaqjc;
 
    @PropertyDef(label = "氧气报警仪安全检查")
    private String yqbjyaqjc;
 
    @PropertyDef(label = "补药前仓内磷化氢浓度")
    private Double byqcnlhqnd;
 
    @PropertyDef(label = "磷化氢浓度单位",description = "1:g/m³ (默认)  2:ppm 3:ml/m³ 4:%VOL。")
    private String nlhqnddw;
 
    @PropertyDef(label = "目标浓度")
    private Double mbnd;
 
    @PropertyDef(label = "作业人数")
    private Integer zyrs;
    
    @PropertyDef(label = "现场指挥人")
    private String xczhr;
 
    @PropertyDef(label = "漏气位置监测")
    private String lswzjc;
 
    @PropertyDef(label = "漏气部位采取的补救措施")
    private String lqbwcqdbjcs;
 
    @PropertyDef(label = "密闭时间")
    private Integer mbsj;
 
    @PropertyDef(label = "散气前磷化氢浓度")
    private Double sqqlhqnd;
 
    @PropertyDef(label = "散气日期")
    private String sqrq;
 
    @PropertyDef(label = "散气方法")
    private String sqff;
 
    @PropertyDef(label = "散气批准人")
    private String sqpzr;
 
    @PropertyDef(label = "散气持续天数")
    private Integer sqcsts;
 
    @PropertyDef(label = "散气结束时磷化氢浓度")
    private Double sqjsslhqnd;
 
    @PropertyDef(label = "残渣收集作业时间")
    private String czsjzysj;
 
    @PropertyDef(label = "残渣收集作业人数")
    private Integer czsjzyrs;
 
    @PropertyDef(label = "残渣收集方法")
    private String czsjff;
 
    @PropertyDef(label = "残渣收集作业批准人")
    private String czsjzypzr;
 
    @PropertyDef(label = "残渣处理措施")
    private String czclcs;
 
    @PropertyDef(label = "残渣处理作业人数")
    private Integer czclzyrs;
 
    @PropertyDef(label = "残渣处理批准人")
    private String czclpzr;
 
    @PropertyDef(label = "熏蒸效果评价")
    private String xzxgpj;
 
    @PropertyDef(label = "熏蒸负责人")
    private String xzfzr;
 
    @PropertyDef(label = "熏蒸作业人员")
    private String xzzyry;
 
    @PropertyDef(label = "最后更新时间")
    private String zhgxsj;
 
}