feiyu02
2022-11-15 23bd719cebe5feeff4e48fde925b0b39755eea93
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
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
package cn.flightfeather.supervision.domain.entity;
 
import com.fasterxml.jackson.annotation.JsonInclude;
 
import java.util.Date;
import javax.persistence.*;
 
@Table(name = "ea_t_fumepurifydevice")
@JsonInclude(JsonInclude.Include.NON_NULL)
public class FumePurifyDevice {
    @Column(name = "FP_GUID")
    private String fpGuid;
 
    /**
     * 数量
     */
    @Column(name = "FP_Num")
    private String fpNum;
 
    /**
     * 油烟净化装置型号
     */
    @Column(name = "FP_Model")
    private String fpModel;
 
    /**
     * 净化原理/方式
     */
    @Column(name = "FP_Purify_Type")
    private String fpPurifyType;
 
    /**
     * 额定风量(m³/h)
     */
    @Column(name = "FP_Air_Volume")
    private String fpAirVolume;
 
    /**
     * 净化效率
     */
    @Column(name = "FP_Purification_Efficiency")
    private String fpPurificationEfficiency;
 
    /**
     * 油烟净化装置供应商
     */
    @Column(name = "FP_Suppliers")
    private String fpSuppliers;
 
    /**
     * 是否有检验报告
     */
    @Column(name = "FP_Test_Report")
    private String fpTestReport;
 
    /**
     * 是否有清洗合同
     */
    @Column(name = "FP_Cleaning_Contract")
    private String fpCleaningContract;
 
    /**
     * 清洗频率
     */
    @Column(name = "FP_Cleaning_Frequency")
    private String fpCleaningFrequency;
 
    /**
     * 是否有清洗台账(单据、照片、发票)
     */
    @Column(name = "FP_Cleaning_Ledger")
    private String fpCleaningLedger;
 
    /**
     * 使用用户id
     */
    @Column(name = "FP_User_Id")
    private String fpUserId;
 
    /**
     * 使用用户用户名
     */
    @Column(name = "FP_User_Name")
    private String fpUserName;
 
    /**
     * 更新时间
     */
    @Column(name = "FP_Updating_Time")
    private Date fpUpdatingTime;
 
    /**
     * 备注
     */
    @Column(name = "FP_Remark")
    private String fpRemark;
 
    /**
     * @return FP_GUID
     */
    public String getFpGuid() {
        return fpGuid;
    }
 
    /**
     * @param fpGuid
     */
    public void setFpGuid(String fpGuid) {
        this.fpGuid = fpGuid == null ? null : fpGuid.trim();
    }
 
    /**
     * 获取数量
     *
     * @return FP_Num - 数量
     */
    public String getFpNum() {
        return fpNum;
    }
 
    /**
     * 设置数量
     *
     * @param fpNum 数量
     */
    public void setFpNum(String fpNum) {
        this.fpNum = fpNum == null ? null : fpNum.trim();
    }
 
    /**
     * 获取油烟净化装置型号
     *
     * @return FP_Model - 油烟净化装置型号
     */
    public String getFpModel() {
        return fpModel;
    }
 
    /**
     * 设置油烟净化装置型号
     *
     * @param fpModel 油烟净化装置型号
     */
    public void setFpModel(String fpModel) {
        this.fpModel = fpModel == null ? null : fpModel.trim();
    }
 
    /**
     * 获取净化原理/方式
     *
     * @return FP_Purify_Type - 净化原理/方式
     */
    public String getFpPurifyType() {
        return fpPurifyType;
    }
 
    /**
     * 设置净化原理/方式
     *
     * @param fpPurifyType 净化原理/方式
     */
    public void setFpPurifyType(String fpPurifyType) {
        this.fpPurifyType = fpPurifyType == null ? null : fpPurifyType.trim();
    }
 
    /**
     * 获取额定风量(m³/h)
     *
     * @return FP_Air_Volume - 额定风量(m³/h)
     */
    public String getFpAirVolume() {
        return fpAirVolume;
    }
 
    /**
     * 设置额定风量(m³/h)
     *
     * @param fpAirVolume 额定风量(m³/h)
     */
    public void setFpAirVolume(String fpAirVolume) {
        this.fpAirVolume = fpAirVolume == null ? null : fpAirVolume.trim();
    }
 
    /**
     * 获取净化效率
     *
     * @return FP_Purification_Efficiency - 净化效率
     */
    public String getFpPurificationEfficiency() {
        return fpPurificationEfficiency;
    }
 
    /**
     * 设置净化效率
     *
     * @param fpPurificationEfficiency 净化效率
     */
    public void setFpPurificationEfficiency(String fpPurificationEfficiency) {
        this.fpPurificationEfficiency = fpPurificationEfficiency == null ? null : fpPurificationEfficiency.trim();
    }
 
    /**
     * 获取油烟净化装置供应商
     *
     * @return FP_Suppliers - 油烟净化装置供应商
     */
    public String getFpSuppliers() {
        return fpSuppliers;
    }
 
    /**
     * 设置油烟净化装置供应商
     *
     * @param fpSuppliers 油烟净化装置供应商
     */
    public void setFpSuppliers(String fpSuppliers) {
        this.fpSuppliers = fpSuppliers == null ? null : fpSuppliers.trim();
    }
 
    /**
     * 获取是否有检验报告
     *
     * @return FP_Test_Report - 是否有检验报告
     */
    public String getFpTestReport() {
        return fpTestReport;
    }
 
    /**
     * 设置是否有检验报告
     *
     * @param fpTestReport 是否有检验报告
     */
    public void setFpTestReport(String fpTestReport) {
        this.fpTestReport = fpTestReport == null ? null : fpTestReport.trim();
    }
 
    /**
     * 获取是否有清洗合同
     *
     * @return FP_Cleaning_Contract - 是否有清洗合同
     */
    public String getFpCleaningContract() {
        return fpCleaningContract;
    }
 
    /**
     * 设置是否有清洗合同
     *
     * @param fpCleaningContract 是否有清洗合同
     */
    public void setFpCleaningContract(String fpCleaningContract) {
        this.fpCleaningContract = fpCleaningContract == null ? null : fpCleaningContract.trim();
    }
 
    /**
     * 获取清洗频率
     *
     * @return FP_Cleaning_Frequency - 清洗频率
     */
    public String getFpCleaningFrequency() {
        return fpCleaningFrequency;
    }
 
    /**
     * 设置清洗频率
     *
     * @param fpCleaningFrequency 清洗频率
     */
    public void setFpCleaningFrequency(String fpCleaningFrequency) {
        this.fpCleaningFrequency = fpCleaningFrequency == null ? null : fpCleaningFrequency.trim();
    }
 
    /**
     * 获取是否有清洗台账(单据、照片、发票)
     *
     * @return FP_Cleaning_Ledger - 是否有清洗台账(单据、照片、发票)
     */
    public String getFpCleaningLedger() {
        return fpCleaningLedger;
    }
 
    /**
     * 设置是否有清洗台账(单据、照片、发票)
     *
     * @param fpCleaningLedger 是否有清洗台账(单据、照片、发票)
     */
    public void setFpCleaningLedger(String fpCleaningLedger) {
        this.fpCleaningLedger = fpCleaningLedger == null ? null : fpCleaningLedger.trim();
    }
 
    /**
     * 获取使用用户id
     *
     * @return FP_User_Id - 使用用户id
     */
    public String getFpUserId() {
        return fpUserId;
    }
 
    /**
     * 设置使用用户id
     *
     * @param fpUserId 使用用户id
     */
    public void setFpUserId(String fpUserId) {
        this.fpUserId = fpUserId == null ? null : fpUserId.trim();
    }
 
    /**
     * 获取使用用户用户名
     *
     * @return FP_User_Name - 使用用户用户名
     */
    public String getFpUserName() {
        return fpUserName;
    }
 
    /**
     * 设置使用用户用户名
     *
     * @param fpUserName 使用用户用户名
     */
    public void setFpUserName(String fpUserName) {
        this.fpUserName = fpUserName == null ? null : fpUserName.trim();
    }
 
    /**
     * 获取更新时间
     *
     * @return FP_Updating_Time - 更新时间
     */
    public Date getFpUpdatingTime() {
        return fpUpdatingTime;
    }
 
    /**
     * 设置更新时间
     *
     * @param fpUpdatingTime 更新时间
     */
    public void setFpUpdatingTime(Date fpUpdatingTime) {
        this.fpUpdatingTime = fpUpdatingTime;
    }
 
    /**
     * 获取备注
     *
     * @return FP_Remark - 备注
     */
    public String getFpRemark() {
        return fpRemark;
    }
 
    /**
     * 设置备注
     *
     * @param fpRemark 备注
     */
    public void setFpRemark(String fpRemark) {
        this.fpRemark = fpRemark == null ? null : fpRemark.trim();
    }
}