whycxzp
2021-04-01 56ea53d43e85be165da7dc27766e240711a09499
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
package com.whyc.pojo;
 
import com.baomidou.mybatisplus.annotation.TableField;
import com.baomidou.mybatisplus.annotation.TableName;
import com.fasterxml.jackson.annotation.JsonFormat;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import org.apache.ibatis.type.Alias;
 
import java.util.Date;
 
/**
 * 1号,2号大功率整流电源-状态
 */
@Alias("ElectricState")
@TableName(schema = "db_experiment",value = "tb_electric_state")
@ApiModel("1号,2号大功率整流电源")
public class ElectricState {
 
    Long          num                         ; //主键
    Integer       electricId                  ; //设备id
    @JsonFormat(pattern = "yyyy-MM-dd",timezone = "Asia/Shanghai")
    Date          recordTime                  ; //记录时间
    Integer       caseTripOutput             ; //机箱跳闸输出
    Integer       faultResetSignal           ; //故障复位信号
    Integer       highVolSwitchStatus       ; //高压开关状态
    Integer       stopButton                  ; //急停按钮
    Integer       mainCabinetFanStatus      ; //主柜风机状态
    Integer       transCabinetDoorLock      ; //变压器柜门连锁
    @TableField("trans_cabinet_overtem_alarm")
    Integer       transCabinetOverTemAlarm  ; //变压器超温报警
    @TableField("trans_cabinet_overtem_trip")
    Integer       transCabinetOverTemTrip   ; //变压器超温跳闸
    Integer       qs1State                    ; //QS1状态
    Integer       qs2State                    ; //QS2状态
    Integer       switchCabinetDoorStatus   ; //转换开关柜门状态
    @TableField("alldcvol")
    Float         allDCVol                     ; //总直流电压
    @TableField("alldccurr")
    Float         allDCCurr                    ; //总直流电流
    Integer       connFlag                    ; //串/并联状态
    @ApiModelProperty("运行状态:0-停止,1-运行")
    private Integer runningStatus;
    @ApiModelProperty("负荷状态:0-未知,1-正常,2-负荷,3-满负")
    private Integer loadStatus;
    @ApiModelProperty("额定电压")
    private Float volStd;
    @ApiModelProperty("最大电压")
    private Float maxVol;
    @ApiModelProperty("负荷电压")
    private Float loadVol;
    @ApiModelProperty("可分配电压")
    private Float assignableVol;
 
    String   note;
 
    public Long getNum() {
        return num;
    }
 
    public void setNum(Long num) {
        this.num = num;
    }
 
    public Integer getElectricId() {
        return electricId;
    }
 
    public void setElectricId(Integer electricId) {
        this.electricId = electricId;
    }
 
    public Date getRecordTime() {
        return recordTime;
    }
 
    public void setRecordTime(Date recordTime) {
        this.recordTime = recordTime;
    }
 
    public Integer getCaseTripOutput() {
        return caseTripOutput;
    }
 
    public void setCaseTripOutput(Integer caseTripOutput) {
        this.caseTripOutput = caseTripOutput;
    }
 
    public Integer getFaultResetSignal() {
        return faultResetSignal;
    }
 
    public void setFaultResetSignal(Integer faultResetSignal) {
        this.faultResetSignal = faultResetSignal;
    }
 
    public Integer getHighVolSwitchStatus() {
        return highVolSwitchStatus;
    }
 
    public void setHighVolSwitchStatus(Integer highVolSwitchStatus) {
        this.highVolSwitchStatus = highVolSwitchStatus;
    }
 
    public Integer getStopButton() {
        return stopButton;
    }
 
    public void setStopButton(Integer stopButton) {
        this.stopButton = stopButton;
    }
 
    public Integer getMainCabinetFanStatus() {
        return mainCabinetFanStatus;
    }
 
    public void setMainCabinetFanStatus(Integer mainCabinetFanStatus) {
        this.mainCabinetFanStatus = mainCabinetFanStatus;
    }
 
    public Integer getTransCabinetDoorLock() {
        return transCabinetDoorLock;
    }
 
    public void setTransCabinetDoorLock(Integer transCabinetDoorLock) {
        this.transCabinetDoorLock = transCabinetDoorLock;
    }
 
    public Integer getTransCabinetOverTemAlarm() {
        return transCabinetOverTemAlarm;
    }
 
    public void setTransCabinetOverTemAlarm(Integer transCabinetOverTemAlarm) {
        this.transCabinetOverTemAlarm = transCabinetOverTemAlarm;
    }
 
    public Integer getTransCabinetOverTemTrip() {
        return transCabinetOverTemTrip;
    }
 
    public void setTransCabinetOverTemTrip(Integer transCabinetOverTemTrip) {
        this.transCabinetOverTemTrip = transCabinetOverTemTrip;
    }
 
    public Integer getQs1State() {
        return qs1State;
    }
 
    public void setQs1State(Integer qs1State) {
        this.qs1State = qs1State;
    }
 
    public Integer getQs2State() {
        return qs2State;
    }
 
    public void setQs2State(Integer qs2State) {
        this.qs2State = qs2State;
    }
 
    public Integer getSwitchCabinetDoorStatus() {
        return switchCabinetDoorStatus;
    }
 
    public void setSwitchCabinetDoorStatus(Integer switchCabinetDoorStatus) {
        this.switchCabinetDoorStatus = switchCabinetDoorStatus;
    }
 
    public Float getAllDCVol() {
        return allDCVol;
    }
 
    public void setAllDCVol(Float allDCVol) {
        this.allDCVol = allDCVol;
    }
 
    public Float getAllDCCurr() {
        return allDCCurr;
    }
 
    public void setAllDCCurr(Float allDCCurr) {
        this.allDCCurr = allDCCurr;
    }
 
    public Integer getConnFlag() {
        return connFlag;
    }
 
    public void setConnFlag(Integer connFlag) {
        this.connFlag = connFlag;
    }
 
    public String getNote() {
        return note;
    }
 
    public void setNote(String note) {
        this.note = note;
    }
 
    public Integer getRunningStatus() {
        return runningStatus;
    }
 
    public void setRunningStatus(Integer runningStatus) {
        this.runningStatus = runningStatus;
    }
 
    public Integer getLoadStatus() {
        return loadStatus;
    }
 
    public void setLoadStatus(Integer loadStatus) {
        this.loadStatus = loadStatus;
    }
 
    public Float getVolStd() {
        return volStd;
    }
 
    public void setVolStd(Float volStd) {
        this.volStd = volStd;
    }
 
    public Float getMaxVol() {
        return maxVol;
    }
 
    public void setMaxVol(Float maxVol) {
        this.maxVol = maxVol;
    }
 
    public Float getLoadVol() {
        return loadVol;
    }
 
    public void setLoadVol(Float loadVol) {
        this.loadVol = loadVol;
    }
 
    public Float getAssignableVol() {
        return assignableVol;
    }
 
    public void setAssignableVol(Float assignableVol) {
        this.assignableVol = assignableVol;
    }
}