feiyu02
2024-11-19 752e00503f672ddfe2066afb6c235721a3a912b5
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
package cn.flightfeather.supervision.domain.entity;
 
import java.util.Date;
import javax.persistence.*;
 
@Table(name = "ea_t_voc_purify_device")
public class VocPurifyDevice {
    @Id
    @Column(name = "VP_Id")
    private Integer vpId;
 
    @Column(name = "IB_GUID")
    private String ibGuid;
 
    /**
     * 设计风量
     */
    @Column(name = "VP_Air_Volume")
    private Integer vpAirVolume;
 
    /**
     * 吸附剂名称
     */
    @Column(name = "VP_Absorbent_Name")
    private String vpAbsorbentName;
 
    /**
     * 吸附剂填充量
     */
    @Column(name = "VP_Absorbent_Amount")
    private Integer vpAbsorbentAmount;
 
    /**
     * 吸附剂更换周期单位,日、周、月、年
     */
    @Column(name = "VP_Period_Unit")
    private String vpPeriodUnit;
 
    /**
     * 每个周期更换次数
     */
    @Column(name = "VP_Period_Count")
    private Integer vpPeriodCount;
 
    /**
     * 吸附剂每次更换重量,单位公斤
     */
    @Column(name = "VP_Period_Weight")
    private Double vpPeriodWeight;
 
    @Column(name = "VP_Create_Time")
    private Date vpCreateTime;
 
    /**
     * 最新更换时间
     */
    @Column(name = "VP_Change_Time")
    private Date vpChangeTime;
 
    /**
     * @return VP_Id
     */
    public Integer getVpId() {
        return vpId;
    }
 
    /**
     * @param vpId
     */
    public void setVpId(Integer vpId) {
        this.vpId = vpId;
    }
 
    /**
     * @return IB_GUID
     */
    public String getIbGuid() {
        return ibGuid;
    }
 
    /**
     * @param ibGuid
     */
    public void setIbGuid(String ibGuid) {
        this.ibGuid = ibGuid == null ? null : ibGuid.trim();
    }
 
    /**
     * 获取设计风量
     *
     * @return VP_Air_Volume - 设计风量
     */
    public Integer getVpAirVolume() {
        return vpAirVolume;
    }
 
    /**
     * 设置设计风量
     *
     * @param vpAirVolume 设计风量
     */
    public void setVpAirVolume(Integer vpAirVolume) {
        this.vpAirVolume = vpAirVolume;
    }
 
    /**
     * 获取吸附剂名称
     *
     * @return VP_Absorbent_Name - 吸附剂名称
     */
    public String getVpAbsorbentName() {
        return vpAbsorbentName;
    }
 
    /**
     * 设置吸附剂名称
     *
     * @param vpAbsorbentName 吸附剂名称
     */
    public void setVpAbsorbentName(String vpAbsorbentName) {
        this.vpAbsorbentName = vpAbsorbentName == null ? null : vpAbsorbentName.trim();
    }
 
    /**
     * 获取吸附剂填充量
     *
     * @return VP_Absorbent_Amount - 吸附剂填充量
     */
    public Integer getVpAbsorbentAmount() {
        return vpAbsorbentAmount;
    }
 
    /**
     * 设置吸附剂填充量
     *
     * @param vpAbsorbentAmount 吸附剂填充量
     */
    public void setVpAbsorbentAmount(Integer vpAbsorbentAmount) {
        this.vpAbsorbentAmount = vpAbsorbentAmount;
    }
 
    /**
     * 获取吸附剂更换周期单位,日、周、月、年
     *
     * @return VP_Period_Unit - 吸附剂更换周期单位,日、周、月、年
     */
    public String getVpPeriodUnit() {
        return vpPeriodUnit;
    }
 
    /**
     * 设置吸附剂更换周期单位,日、周、月、年
     *
     * @param vpPeriodUnit 吸附剂更换周期单位,日、周、月、年
     */
    public void setVpPeriodUnit(String vpPeriodUnit) {
        this.vpPeriodUnit = vpPeriodUnit == null ? null : vpPeriodUnit.trim();
    }
 
    /**
     * 获取每个周期更换次数
     *
     * @return VP_Period_Count - 每个周期更换次数
     */
    public Integer getVpPeriodCount() {
        return vpPeriodCount;
    }
 
    /**
     * 设置每个周期更换次数
     *
     * @param vpPeriodCount 每个周期更换次数
     */
    public void setVpPeriodCount(Integer vpPeriodCount) {
        this.vpPeriodCount = vpPeriodCount;
    }
 
    /**
     * 获取吸附剂每次更换重量,单位公斤
     *
     * @return VP_Period_Weight - 吸附剂每次更换重量,单位公斤
     */
    public Double getVpPeriodWeight() {
        return vpPeriodWeight;
    }
 
    /**
     * 设置吸附剂每次更换重量,单位公斤
     *
     * @param vpPeriodWeight 吸附剂每次更换重量,单位公斤
     */
    public void setVpPeriodWeight(Double vpPeriodWeight) {
        this.vpPeriodWeight = vpPeriodWeight;
    }
 
    /**
     * @return VP_Create_Time
     */
    public Date getVpCreateTime() {
        return vpCreateTime;
    }
 
    /**
     * @param vpCreateTime
     */
    public void setVpCreateTime(Date vpCreateTime) {
        this.vpCreateTime = vpCreateTime;
    }
 
    /**
     * 获取最新更换时间
     *
     * @return VP_Change_Time - 最新更换时间
     */
    public Date getVpChangeTime() {
        return vpChangeTime;
    }
 
    /**
     * 设置最新更换时间
     *
     * @param vpChangeTime 最新更换时间
     */
    public void setVpChangeTime(Date vpChangeTime) {
        this.vpChangeTime = vpChangeTime;
    }
}