whyczh
2021-03-25 da9bb5ab7c3efac4e0cb65fe6aebe7b5cc4cfbf4
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
package com.whyc.pojo;
 
import com.baomidou.mybatisplus.annotation.TableName;
import org.apache.ibatis.type.Alias;
 
import java.util.Date;
 
/**
 * TODO:电子2mw状态
 */
@Alias("Electric2MWState")
@TableName(schema = "db_experiment",value = "tb_electric2mw_state")
public class Electric2MWState {
 
    Long           num;
    Integer        electric2KWId;
    Date           recordTime;
    Float          branchDCVol             ; // 分直流电压
    Float          branchDCCurr            ; // 分直流电流
    Float          allDCVol               ; // 总直流电压
    Float          allDCCurr              ; // 总直流电流
    Float          stopChargeVolOne      ; // 第1阶段充电终止电压
    Float          stopChargeVolTwo      ; // 第2阶段充电终止电压
    Float          stopChargeVolThree    ; // 第3阶段充电终止电压
    Float          stopChargeVolFour     ; // 第4阶段充电终止电压
    Float          stopChargeVolFive     ; // 第5阶段充电终止电压
    Float          controlAngle           ; // 控制角
    Float          localGiveVol           ; // 当前给定电压
    Float          VolSet                 ; // 电压设定值
    Float          localGiveCurr          ; // 当前给定电流
    Float          CurrSet                ; // 电流设定值
    Float          ChargeCurrOne         ; // 第1阶段充电电流值
    Float          ChargeCurrTwo         ; // 第2阶段充电电流值
    Float          ChargeCurrThree       ; // 第3阶段充电电流值
    Float          ChargeCurrFour        ; // 第4阶段充电电流值
    Float          ChargeCurrFive        ; // 第5阶段充电电流值
    Float          consVolModeChargeCurr ; // 转为恒压模式充电电压值
    String        note                   ; // 备用
 
 
    public Long getNum() {
        return num;
    }
 
    public void setNum(Long num) {
        this.num = num;
    }
 
    public Integer getElectric2KWId() {
        return electric2KWId;
    }
 
    public void setElectric2KWId(Integer electric2KWId) {
        this.electric2KWId = electric2KWId;
    }
 
    public Date getRecordTime() {
        return recordTime;
    }
 
    public void setRecordTime(Date recordTime) {
        this.recordTime = recordTime;
    }
 
    public Float getBranchDCVol() {
        return branchDCVol;
    }
 
    public void setBranchDCVol(Float branchDCVol) {
        this.branchDCVol = branchDCVol;
    }
 
    public Float getBranchDCCurr() {
        return branchDCCurr;
    }
 
    public void setBranchDCCurr(Float branchDCCurr) {
        this.branchDCCurr = branchDCCurr;
    }
 
    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 Float getStopChargeVolOne() {
        return stopChargeVolOne;
    }
 
    public void setStopChargeVolOne(Float stopChargeVolOne) {
        this.stopChargeVolOne = stopChargeVolOne;
    }
 
    public Float getStopChargeVolTwo() {
        return stopChargeVolTwo;
    }
 
    public void setStopChargeVolTwo(Float stopChargeVolTwo) {
        this.stopChargeVolTwo = stopChargeVolTwo;
    }
 
    public Float getStopChargeVolThree() {
        return stopChargeVolThree;
    }
 
    public void setStopChargeVolThree(Float stopChargeVolThree) {
        this.stopChargeVolThree = stopChargeVolThree;
    }
 
    public Float getStopChargeVolFour() {
        return stopChargeVolFour;
    }
 
    public void setStopChargeVolFour(Float stopChargeVolFour) {
        this.stopChargeVolFour = stopChargeVolFour;
    }
 
    public Float getStopChargeVolFive() {
        return stopChargeVolFive;
    }
 
    public void setStopChargeVolFive(Float stopChargeVolFive) {
        this.stopChargeVolFive = stopChargeVolFive;
    }
 
    public Float getControlAngle() {
        return controlAngle;
    }
 
    public void setControlAngle(Float controlAngle) {
        this.controlAngle = controlAngle;
    }
 
    public Float getLocalGiveVol() {
        return localGiveVol;
    }
 
    public void setLocalGiveVol(Float localGiveVol) {
        this.localGiveVol = localGiveVol;
    }
 
    public Float getVolSet() {
        return VolSet;
    }
 
    public void setVolSet(Float volSet) {
        VolSet = volSet;
    }
 
    public Float getLocalGiveCurr() {
        return localGiveCurr;
    }
 
    public void setLocalGiveCurr(Float localGiveCurr) {
        this.localGiveCurr = localGiveCurr;
    }
 
    public Float getCurrSet() {
        return CurrSet;
    }
 
    public void setCurrSet(Float currSet) {
        CurrSet = currSet;
    }
 
    public Float getChargeCurrOne() {
        return ChargeCurrOne;
    }
 
    public void setChargeCurrOne(Float chargeCurrOne) {
        ChargeCurrOne = chargeCurrOne;
    }
 
    public Float getChargeCurrTwo() {
        return ChargeCurrTwo;
    }
 
    public void setChargeCurrTwo(Float chargeCurrTwo) {
        ChargeCurrTwo = chargeCurrTwo;
    }
 
    public Float getChargeCurrThree() {
        return ChargeCurrThree;
    }
 
    public void setChargeCurrThree(Float chargeCurrThree) {
        ChargeCurrThree = chargeCurrThree;
    }
 
    public Float getChargeCurrFour() {
        return ChargeCurrFour;
    }
 
    public void setChargeCurrFour(Float chargeCurrFour) {
        ChargeCurrFour = chargeCurrFour;
    }
 
    public Float getChargeCurrFive() {
        return ChargeCurrFive;
    }
 
    public void setChargeCurrFive(Float chargeCurrFive) {
        ChargeCurrFive = chargeCurrFive;
    }
 
    public Float getConsVolModeChargeCurr() {
        return consVolModeChargeCurr;
    }
 
    public void setConsVolModeChargeCurr(Float consVolModeChargeCurr) {
        this.consVolModeChargeCurr = consVolModeChargeCurr;
    }
 
    public String getNote() {
        return note;
    }
 
    public void setNote(String note) {
        this.note = note;
    }
}