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
package com.fzzy.igds.dzhwk.v1.dto;
 
import com.bstek.dorado.annotation.PropertyDef;
import lombok.Data;
 
/**
 * 接口表-通风作业
 *
 */
@Data
public class ApiV1Data2005 {
 
    @PropertyDef(label = "通风作业单号" )
    private String tfzydh;
 
    @PropertyDef(label = "通风日期" )
    private String tfrq;
 
    @PropertyDef(label = "廒间代码" )
    private String ajdm;
 
    @PropertyDef(label = "通风目的" )
    private String tfmd;
 
    @PropertyDef(label = "通风类型" )
    private String tflx;
 
    @PropertyDef(label = "送风方式" )
    private String sffs;
 
    @PropertyDef(label = "作业时气温" )
    private Double zysqw;
 
    @PropertyDef(label = "作业时气湿" )
    private Double zysqs;
 
    @PropertyDef(label = "通风时长" )
    private Double tfsc;
 
    @PropertyDef(label = "作业前平均粮温" )
    private Double zyqpjlw;
 
    @PropertyDef(label = "结束后平均粮温" )
    private Double jshpjlw;
 
    @PropertyDef(label = "作业前平均水分" )
    private Double zyqpjsf;
 
    @PropertyDef(label = "结束后平均水分" )
    private Double zyhpjsf;
 
    @PropertyDef(label = "通风作业负责人" )
    private String tfzyfzr;
 
    @PropertyDef(label = "通风作业人员" )
    private String tfzyry;
 
    @PropertyDef(label = "最后更新时间" )
    private String zhgxsj;
 
}