whyczh
2021-04-07 4992d0ea3fb6adaba4331fda37c43e8f0d00a458
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
package com.whyc.pojo;
 
import com.baomidou.mybatisplus.annotation.TableField;
import com.baomidou.mybatisplus.annotation.TableName;
import com.fasterxml.jackson.annotation.JsonFormat;
import org.apache.ibatis.type.Alias;
 
import java.util.Date;
 
/**
 * 水冷交流电阻负载-状态
 */
@Alias("DynamicLoadStateRt")
@TableName(schema = "db_experiment",value = "tb_dynamicload_state_rt")
public class DynamicLoadStateRt {
 
    Integer       num                ; //主键
    Integer       devId             ; //设备id
    @JsonFormat(pattern = "yyyy-MM-dd",timezone = "Asia/Shanghai")
    Date          recordTime        ; //
    Integer       startAuto         ; //启动自动加载
    Integer       stopAuto          ; //停止自动加载
    Integer       suddenCrease      ; //突加突卸
    Integer       allOpen           ; //全部分闸
    Float     actualSetPower   ; //实际设定功率
    Float     outputPower       ; //已输出功率
    Float     setPower          ; //设定功率
    Float     intervalTime      ; //间隔时间s
    Float     actualCurr        ; //实际电流
    Float     actualMov         ; //实际电压
    Integer       switchOn          ; //是否合闸
    @TableField("FZ_autostate1")
    Integer       FZAutoState1      ; //FZ自动状态1
    @TableField("FZ_autostate2")
    Integer       FZAutoState2      ; //FZ自动状态2
    @TableField("FZ_autostate3")
    Integer       FZAutoState3      ; //FZ自动状态3
    @TableField("FZ_autostate4")
    Integer       FZAutoState4      ; //FZ自动状态4
    @TableField("FZ_autostate5")
    Integer       FZAutoState5      ; //FZ自动状态5
    @TableField("react_overtem")
    Integer       reactOverTem      ; //电抗超温
    @TableField("water_overtem")
    Integer       waterOverTem      ; //冷却水超温
    Integer       waterLevelLow    ; //冷却水液位低
    Integer       waterPressureHigh; //冷却水压高
    Integer       localControl      ; //就地控制
    Integer       backControl       ; //后台控制
    Integer       centralControl    ; //中控控制
    Integer       switchState       ; //开关柜状态
    Integer       interVolumeM200  ; //中间量M200
    Integer       fanButton         ; //风机按钮
    Integer       fanOutput         ; //风机输出
    Integer       allowClose        ; //是否允许合闸
    String   note;
 
    public Integer getNum() {
        return num;
    }
 
    public void setNum(Integer num) {
        this.num = num;
    }
 
    public Integer getDevId() {
        return devId;
    }
 
    public void setDevId(Integer devId) {
        this.devId = devId;
    }
 
    public Date getRecordTime() {
        return recordTime;
    }
 
    public void setRecordTime(Date recordTime) {
        this.recordTime = recordTime;
    }
 
    public Integer getStartAuto() {
        return startAuto;
    }
 
    public void setStartAuto(Integer startAuto) {
        this.startAuto = startAuto;
    }
 
    public Integer getStopAuto() {
        return stopAuto;
    }
 
    public void setStopAuto(Integer stopAuto) {
        this.stopAuto = stopAuto;
    }
 
    public Integer getSuddenCrease() {
        return suddenCrease;
    }
 
    public void setSuddenCrease(Integer suddenCrease) {
        this.suddenCrease = suddenCrease;
    }
 
    public Integer getAllOpen() {
        return allOpen;
    }
 
    public void setAllOpen(Integer allOpen) {
        this.allOpen = allOpen;
    }
 
    public Float getActualSetPower() {
        return actualSetPower;
    }
 
    public void setActualSetPower(Float actualSetPower) {
        this.actualSetPower = actualSetPower;
    }
 
    public Float getOutputPower() {
        return outputPower;
    }
 
    public void setOutputPower(Float outputPower) {
        this.outputPower = outputPower;
    }
 
    public Float getSetPower() {
        return setPower;
    }
 
    public void setSetPower(Float setPower) {
        this.setPower = setPower;
    }
 
    public Float getIntervalTime() {
        return intervalTime;
    }
 
    public void setIntervalTime(Float intervalTime) {
        this.intervalTime = intervalTime;
    }
 
    public Float getActualCurr() {
        return actualCurr;
    }
 
    public void setActualCurr(Float actualCurr) {
        this.actualCurr = actualCurr;
    }
 
    public Float getActualMov() {
        return actualMov;
    }
 
    public void setActualMov(Float actualMov) {
        this.actualMov = actualMov;
    }
 
    public Integer getSwitchOn() {
        return switchOn;
    }
 
    public void setSwitchOn(Integer switchOn) {
        this.switchOn = switchOn;
    }
 
    public Integer getFZAutoState1() {
        return FZAutoState1;
    }
 
    public void setFZAutoState1(Integer FZAutoState1) {
        this.FZAutoState1 = FZAutoState1;
    }
 
    public Integer getFZAutoState2() {
        return FZAutoState2;
    }
 
    public void setFZAutoState2(Integer FZAutoState2) {
        this.FZAutoState2 = FZAutoState2;
    }
 
    public Integer getFZAutoState3() {
        return FZAutoState3;
    }
 
    public void setFZAutoState3(Integer FZAutoState3) {
        this.FZAutoState3 = FZAutoState3;
    }
 
    public Integer getFZAutoState4() {
        return FZAutoState4;
    }
 
    public void setFZAutoState4(Integer FZAutoState4) {
        this.FZAutoState4 = FZAutoState4;
    }
 
    public Integer getFZAutoState5() {
        return FZAutoState5;
    }
 
    public void setFZAutoState5(Integer FZAutoState5) {
        this.FZAutoState5 = FZAutoState5;
    }
 
    public Integer getReactOverTem() {
        return reactOverTem;
    }
 
    public void setReactOverTem(Integer reactOverTem) {
        this.reactOverTem = reactOverTem;
    }
 
    public Integer getWaterOverTem() {
        return waterOverTem;
    }
 
    public void setWaterOverTem(Integer waterOverTem) {
        this.waterOverTem = waterOverTem;
    }
 
    public Integer getWaterLevelLow() {
        return waterLevelLow;
    }
 
    public void setWaterLevelLow(Integer waterLevelLow) {
        this.waterLevelLow = waterLevelLow;
    }
 
    public Integer getWaterPressureHigh() {
        return waterPressureHigh;
    }
 
    public void setWaterPressureHigh(Integer waterPressureHigh) {
        this.waterPressureHigh = waterPressureHigh;
    }
 
    public Integer getLocalControl() {
        return localControl;
    }
 
    public void setLocalControl(Integer localControl) {
        this.localControl = localControl;
    }
 
    public Integer getBackControl() {
        return backControl;
    }
 
    public void setBackControl(Integer backControl) {
        this.backControl = backControl;
    }
 
    public Integer getCentralControl() {
        return centralControl;
    }
 
    public void setCentralControl(Integer centralControl) {
        this.centralControl = centralControl;
    }
 
    public Integer getSwitchState() {
        return switchState;
    }
 
    public void setSwitchState(Integer switchState) {
        this.switchState = switchState;
    }
 
    public Integer getInterVolumeM200() {
        return interVolumeM200;
    }
 
    public void setInterVolumeM200(Integer interVolumeM200) {
        this.interVolumeM200 = interVolumeM200;
    }
 
    public Integer getFanButton() {
        return fanButton;
    }
 
    public void setFanButton(Integer fanButton) {
        this.fanButton = fanButton;
    }
 
    public Integer getFanOutput() {
        return fanOutput;
    }
 
    public void setFanOutput(Integer fanOutput) {
        this.fanOutput = fanOutput;
    }
 
    public Integer getAllowClose() {
        return allowClose;
    }
 
    public void setAllowClose(Integer allowClose) {
        this.allowClose = allowClose;
    }
 
    public String getNote() {
        return note;
    }
 
    public void setNote(String note) {
        this.note = note;
    }
}