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
package com.fzzy.igds.dzhwk.v1.dto;
 
import com.bstek.dorado.annotation.PropertyDef;
import lombok.Data;
 
/**
 * 接口表-气体
 */
@Data
public class ApiV1Data2002 {
 
    @PropertyDef(label = "检测单号")
    private String qtndjcdh;
 
    @PropertyDef(label = "检测时间")
    private String jcsj;
 
    @PropertyDef(label = "仓库编码")
    private String hwdm;
 
    @PropertyDef(label = "氧气含量值集合")
    private String yqhlzjh;
 
    @PropertyDef(label = "二氧化碳含量值集合")
    private String eyhthlzjh;
 
    @PropertyDef(label = "氧气含量值集合")
    private String lhqndzjh;
 
    @PropertyDef(label = "氮气含量值集合")
    private String dqndzjh;
 
    @PropertyDef(label = "作业类型")
    private Integer zylx;
 
    @PropertyDef(label = "更新时间")
    private String zhgxsj;
 
}