czt
2025-06-11 283da741b2429cf5a53786e5ee1b5528b757fdf6
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
package com.fzzy.igds.dzhwk.domain;
 
import com.bstek.dorado.annotation.PropertyDef;
import lombok.Data;
 
import javax.persistence.Column;
import javax.persistence.Entity;
import javax.persistence.Id;
import javax.persistence.Table;
import java.io.Serializable;
import java.util.Date;
 
/**
 * 接口表-谷冷作业
 *
 */
@Data
@Entity
@Table(name = "H_COLD_VALLEY")
public class ColdValley implements Serializable {
 
    @Id
    @Column(name = "zydh", length = 40)
    @PropertyDef(label = "谷冷作业单号")
    private String zydh;
 
    @Column(name = "COMPANY_ID_", length = 10)
    @PropertyDef(label = "组织编码")
    private String companyId;
 
    @Column(name = "DEPT_ID_", length = 40)
    @PropertyDef(label = "所属分库")
    private String deptId;
 
    @Column(name = "ajdm", length = 40)
    @PropertyDef(label = "廒间代码")
    private String ajdm;
 
    @Column(name = "kssj")
    @PropertyDef(label = "通风开始时间")
    private Date kssj;
 
    @Column(name = "jssj")
    @PropertyDef(label = "通风结束时间")
    private Date jssj;
 
    @Column(name = "lspzdm", length = 40)
    @PropertyDef(label = "粮食品种")
    private String lspzdm;
 
    @Column(name = "lssl", length = 40)
    @PropertyDef(label = "粮食数量")
    private Double lssl;
 
    @Column(name = "lqtfmd", length = 40)
    @PropertyDef(label = "冷却通风目的")
    private String lqtfmd;
 
    @Column(name = "lqsfwd")
    @PropertyDef(label = "冷却送风温度")
    private Double lqsfwd;
 
    @Column(name = "lqsfsd")
    @PropertyDef(label = "冷却送风湿度")
    private Double lqsfsd;
 
    @Column(name = "ljtfsj")
    @PropertyDef(label = "累计通风时间")
    private Double ljtfsj;
 
    @Column(name = "wwzgz")
    @PropertyDef(label = "通风期间外温最高值")
    private Double wwzgz;
 
    @Column(name = "wwzdz")
    @PropertyDef(label = "通风期间外温最低值")
    private Double wwzdz;
 
    @Column(name = "wwpjz")
    @PropertyDef(label = "通风期间外温平均值")
    private Double wwpjz;
 
    @Column(name = "wszgz")
    @PropertyDef(label = "通风期间外湿最高值")
    private Double wszgz;
 
    @Column(name = "wszdz")
    @PropertyDef(label = "通风期间外湿最低值")
    private Double wszdz;
 
    @Column(name = "wspjz")
    @PropertyDef(label = "通风期间外湿平均值")
    private Double wspjz;
 
    @Column(name = "qlwzgz")
    @PropertyDef(label = "通风前粮温最高值")
    private Double qlwzgz;
 
    @Column(name = "qlwzdz")
    @PropertyDef(label = "通风前粮温最低值")
    private Double qlwzdz;
 
    @Column(name = "qlwpjz")
    @PropertyDef(label = "通风前粮温平均值")
    private Double qlwpjz;
 
    @Column(name = "hlwzgz")
    @PropertyDef(label = "通风后粮温最高值")
    private Double hlwzgz;
 
    @Column(name = "hlwzdz")
    @PropertyDef(label = "通风后粮温最低值")
    private Double hlwzdz;
 
    @Column(name = "hlwpjz")
    @PropertyDef(label = "通风后粮温平均值")
    private Double hlwpjz;
 
    @Column(name = "qlszgz")
    @PropertyDef(label = "通风前粮湿度最高值")
    private Double qlszgz;
 
    @Column(name = "qlszdz")
    @PropertyDef(label = "通风前粮湿度最低值")
    private Double qlszdz;
 
    @Column(name = "qlspjz")
    @PropertyDef(label = "通风前粮湿度平均值")
    private Double qlspjz;
 
    @Column(name = "hlszgz")
    @PropertyDef(label = "通风后粮湿度最高值")
    private Double hlszgz;
 
    @Column(name = "hlszdz")
    @PropertyDef(label = "通风后粮湿度最低值")
    private Double hlszdz;
 
    @Column(name = "hlspjz")
    @PropertyDef(label = "通风后粮湿度平均值")
    private Double hlspjz;
 
    @Column(name = "zhdl", length = 40)
    @PropertyDef(label = "总耗电量")
    private String zhdl;
 
    @Column(name = "czr", length = 40)
    @PropertyDef(label = "操作人")
    private String czr;
 
    @Column(name = "bz", length = 40)
    @PropertyDef(label = "备注")
    private String bz;
 
    @Column(name = "zhgxsj")
    @PropertyDef(label = "更新时间")
    private Date zhgxsj;
 
}