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
package com.fzzy.igds.dzhwk.v1.dto;
 
import com.bstek.dorado.annotation.PropertyDef;
import lombok.Data;
 
/**
 * 接口表-谷冷作业
 *
 */
@Data
public class ApiV1Data2007 {
 
    @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 Double lssl;
 
    @PropertyDef(label = "冷却通风目的")
    private String lqtfmd;
 
    @PropertyDef(label = "冷却送风温度")
    private Double lqsfwd;
 
    @PropertyDef(label = "冷却送风湿度")
    private Double lqsfsd;
 
    @PropertyDef(label = "累计通风时间")
    private Double ljtfsj;
    
    @PropertyDef(label = "通风期间外温最高值")
    private Double wwzgz;
 
    @PropertyDef(label = "通风期间外温最低值")
    private Double wwzdz;
 
    @PropertyDef(label = "通风期间外温平均值")
    private Double wwpjz;
 
    @PropertyDef(label = "通风期间外湿最高值")
    private Double wszgz;
 
    @PropertyDef(label = "通风期间外湿最低值")
    private Double wszdz;
 
    @PropertyDef(label = "通风期间外湿平均值")
    private Double wspjz;
 
    @PropertyDef(label = "通风前粮温最高值")
    private Double qlwzgz;
 
    @PropertyDef(label = "通风前粮温最低值")
    private Double qlwzdz;
 
    @PropertyDef(label = "通风前粮温平均值")
    private Double qlwpjz;
 
    @PropertyDef(label = "通风后粮温最高值")
    private Double hlwzgz;
 
    @PropertyDef(label = "通风后粮温最低值")
    private Double hlwzdz;
 
    @PropertyDef(label = "通风后粮温平均值")
    private Double hlwpjz;
    
    @PropertyDef(label = "通风前粮湿度最高值")
    private Double qlszgz;
 
    @PropertyDef(label = "通风前粮湿度最低值")
    private Double qlszdz;
 
    @PropertyDef(label = "通风前粮湿度平均值")
    private Double qlspjz;
 
    @PropertyDef(label = "通风后粮湿度最高值")
    private Double hlszgz;
 
    @PropertyDef(label = "通风后粮湿度最低值")
    private Double hlszdz;
 
    @PropertyDef(label = "通风后粮湿度平均值")
    private Double hlspjz;
 
    @PropertyDef(label = "总耗电量")
    private String zhdl;
 
    @PropertyDef(label = "操作人")
    private String czr;
 
    @PropertyDef(label = "备注")
    private Integer bz;
 
    @PropertyDef(label = "更新时间")
    private String zhgxsj;
 
}