feiyu02
2025-08-14 f373bbf83d9d2a7e5f96118d7dcd658c9fea8bc8
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
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
package cn.flightfeather.supervision.domain.ds2.entity;
 
import javax.persistence.Column;
import javax.persistence.Id;
import javax.persistence.Table;
import java.util.Date;
 
@Table(name = "ja_t_lamp_device_data")
public class LampDeviceData {
    @Id
    private Integer id;
 
    /**
     * 通道号
     */
    @Column(name = "channel_num")
    private String channelNum;
 
    /**
     * 清洁度
     */
    @Column(name = "clean_liness")
    private String cleanLiness;
 
    /**
     * 设备编号
     */
    @Column(name = "device_code")
    private String deviceCode;
 
    /**
     * 设备名称
     */
    @Column(name = "device_name")
    private String deviceName;
 
    /**
     * 设备状态
     */
    @Column(name = "device_state")
    private String deviceState;
 
    /**
     * 企业编号
     */
    @Column(name = "enter_id")
    private String enterId;
 
    /**
     * 风扇状态
     */
    @Column(name = "fan_state")
    private String fanState;
 
    /**
     * 油烟浓度
     */
    @Column(name = "lampblack_value")
    private Double lampblackValue;
 
    /**
     * 监测时间
     */
    @Column(name = "monitor_time")
    private Date monitorTime;
 
    /**
     * 生产时间
     */
    @Column(name = "production_date")
    private Date productionDate;
 
    /**
     * 净化器状态
     */
    @Column(name = "purifier_state")
    private String purifierState;
 
    /**
     * @return id
     */
    public Integer getId() {
        return id;
    }
 
    /**
     * @param id
     */
    public void setId(Integer id) {
        this.id = id;
    }
 
    /**
     * 获取通道号
     *
     * @return channel_num - 通道号
     */
    public String getChannelNum() {
        return channelNum;
    }
 
    /**
     * 设置通道号
     *
     * @param channelNum 通道号
     */
    public void setChannelNum(String channelNum) {
        this.channelNum = channelNum == null ? null : channelNum.trim();
    }
 
    /**
     * 获取清洁度
     *
     * @return clean_liness - 清洁度
     */
    public String getCleanLiness() {
        return cleanLiness;
    }
 
    /**
     * 设置清洁度
     *
     * @param cleanLiness 清洁度
     */
    public void setCleanLiness(String cleanLiness) {
        this.cleanLiness = cleanLiness == null ? null : cleanLiness.trim();
    }
 
    /**
     * 获取设备编号
     *
     * @return device_code - 设备编号
     */
    public String getDeviceCode() {
        return deviceCode;
    }
 
    /**
     * 设置设备编号
     *
     * @param deviceCode 设备编号
     */
    public void setDeviceCode(String deviceCode) {
        this.deviceCode = deviceCode == null ? null : deviceCode.trim();
    }
 
    /**
     * 获取设备名称
     *
     * @return device_name - 设备名称
     */
    public String getDeviceName() {
        return deviceName;
    }
 
    /**
     * 设置设备名称
     *
     * @param deviceName 设备名称
     */
    public void setDeviceName(String deviceName) {
        this.deviceName = deviceName == null ? null : deviceName.trim();
    }
 
    /**
     * 获取设备状态
     *
     * @return device_state - 设备状态
     */
    public String getDeviceState() {
        return deviceState;
    }
 
    /**
     * 设置设备状态
     *
     * @param deviceState 设备状态
     */
    public void setDeviceState(String deviceState) {
        this.deviceState = deviceState == null ? null : deviceState.trim();
    }
 
    /**
     * 获取企业编号
     *
     * @return enter_id - 企业编号
     */
    public String getEnterId() {
        return enterId;
    }
 
    /**
     * 设置企业编号
     *
     * @param enterId 企业编号
     */
    public void setEnterId(String enterId) {
        this.enterId = enterId == null ? null : enterId.trim();
    }
 
    /**
     * 获取风扇状态
     *
     * @return fan_state - 风扇状态
     */
    public String getFanState() {
        return fanState;
    }
 
    /**
     * 设置风扇状态
     *
     * @param fanState 风扇状态
     */
    public void setFanState(String fanState) {
        this.fanState = fanState == null ? null : fanState.trim();
    }
 
    /**
     * 获取油烟浓度
     *
     * @return lampblack_value - 油烟浓度
     */
    public Double getLampblackValue() {
        return lampblackValue;
    }
 
    /**
     * 设置油烟浓度
     *
     * @param lampblackValue 油烟浓度
     */
    public void setLampblackValue(Double lampblackValue) {
        this.lampblackValue = lampblackValue;
    }
 
    /**
     * 获取监测时间
     *
     * @return monitor_time - 监测时间
     */
    public Date getMonitorTime() {
        return monitorTime;
    }
 
    /**
     * 设置监测时间
     *
     * @param monitorTime 监测时间
     */
    public void setMonitorTime(Date monitorTime) {
        this.monitorTime = monitorTime;
    }
 
    /**
     * 获取生产时间
     *
     * @return production_date - 生产时间
     */
    public Date getProductionDate() {
        return productionDate;
    }
 
    /**
     * 设置生产时间
     *
     * @param productionDate 生产时间
     */
    public void setProductionDate(Date productionDate) {
        this.productionDate = productionDate;
    }
 
    /**
     * 获取净化器状态
     *
     * @return purifier_state - 净化器状态
     */
    public String getPurifierState() {
        return purifierState;
    }
 
    /**
     * 设置净化器状态
     *
     * @param purifierState 净化器状态
     */
    public void setPurifierState(String purifierState) {
        this.purifierState = purifierState == null ? null : purifierState.trim();
    }
}