whycrzg
2021-02-23 351b9a53cb9ecebdf8f79db0117f540d9c42c2a4
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
package com.fgkj.dto.ram;
 
import org.apache.ibatis.type.Alias;
 
import java.io.Serializable;
import java.util.Date;
 
import com.fasterxml.jackson.annotation.JsonFormat;
 
@Alias("Fbs9100s_nibian_state")
public class Fbs9100s_nibian_state implements Serializable {
    private int num;
    private int dev_id;
    private int nb_num;
    @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "Asia/Shanghai")
    private Date record_time;
    private float ac_ASimVol;
    private float ac_ASimCur;
    private float ac_BSimVol;
    private float ac_BSimCur;
    private float ac_CSimVol;
    private float ac_CSimCur;
    private float a_HZ;
    private float b_HZ;
    private float c_HZ;
    private float power_Pa;
    private float power_Pb;
    private float power_Pc;
    private float power_Sa;
    private float power_Sb;
    private float power_Sc;
    private float temp1;
    private float temp2;
    private float runState;
    private int dcACState;
    private int insulaTionRes1;
    private int insulaTionRes2;
    private float dcInputVol;
    private float dcInputCur;
    private int setRun_Stop;
    private float setDischargeCur;
    private int commTxCnt;
    private int commRxCnt;
 
    private String note;
 
    public int getNum() {
        return num;
    }
 
    public void setNum(int num) {
        this.num = num;
    }
 
    public int getDev_id() {
        return dev_id;
    }
 
    public void setDev_id(int dev_id) {
        this.dev_id = dev_id;
    }
 
    public int getNb_num() {
        return nb_num;
    }
 
    public void setNb_num(int nb_num) {
        this.nb_num = nb_num;
    }
 
    public Date getRecord_time() {
        return record_time;
    }
 
    public void setRecord_time(Date record_time) {
        this.record_time = record_time;
    }
 
    public float getAc_ASimVol() {
        return ac_ASimVol;
    }
 
    public void setAc_ASimVol(float ac_ASimVol) {
        this.ac_ASimVol = ac_ASimVol;
    }
 
    public float getAc_ASimCur() {
        return ac_ASimCur;
    }
 
    public void setAc_ASimCur(float ac_ASimCur) {
        this.ac_ASimCur = ac_ASimCur;
    }
 
    public float getAc_BSimVol() {
        return ac_BSimVol;
    }
 
    public void setAc_BSimVol(float ac_BSimVol) {
        this.ac_BSimVol = ac_BSimVol;
    }
 
    public float getAc_BSimCur() {
        return ac_BSimCur;
    }
 
    public void setAc_BSimCur(float ac_BSimCur) {
        this.ac_BSimCur = ac_BSimCur;
    }
 
    public float getAc_CSimVol() {
        return ac_CSimVol;
    }
 
    public void setAc_CSimVol(float ac_CSimVol) {
        this.ac_CSimVol = ac_CSimVol;
    }
 
    public float getAc_CSimCur() {
        return ac_CSimCur;
    }
 
    public void setAc_CSimCur(float ac_CSimCur) {
        this.ac_CSimCur = ac_CSimCur;
    }
 
    public float getA_HZ() {
        return a_HZ;
    }
 
    public void setA_HZ(float a_HZ) {
        this.a_HZ = a_HZ;
    }
 
    public float getB_HZ() {
        return b_HZ;
    }
 
    public void setB_HZ(float b_HZ) {
        this.b_HZ = b_HZ;
    }
 
    public float getC_HZ() {
        return c_HZ;
    }
 
    public void setC_HZ(float c_HZ) {
        this.c_HZ = c_HZ;
    }
 
    public float getPower_Pa() {
        return power_Pa;
    }
 
    public void setPower_Pa(float power_Pa) {
        this.power_Pa = power_Pa;
    }
 
    public float getPower_Pb() {
        return power_Pb;
    }
 
    public void setPower_Pb(float power_Pb) {
        this.power_Pb = power_Pb;
    }
 
    public float getPower_Pc() {
        return power_Pc;
    }
 
    public void setPower_Pc(float power_Pc) {
        this.power_Pc = power_Pc;
    }
 
    public float getPower_Sa() {
        return power_Sa;
    }
 
    public void setPower_Sa(float power_Sa) {
        this.power_Sa = power_Sa;
    }
 
    public float getPower_Sb() {
        return power_Sb;
    }
 
    public void setPower_Sb(float power_Sb) {
        this.power_Sb = power_Sb;
    }
 
    public float getPower_Sc() {
        return power_Sc;
    }
 
    public void setPower_Sc(float power_Sc) {
        this.power_Sc = power_Sc;
    }
 
    public float getTemp1() {
        return temp1;
    }
 
    public void setTemp1(float temp1) {
        this.temp1 = temp1;
    }
 
    public float getTemp2() {
        return temp2;
    }
 
    public void setTemp2(float temp2) {
        this.temp2 = temp2;
    }
 
    public float getRunState() {
        return runState;
    }
 
    public void setRunState(float runState) {
        this.runState = runState;
    }
 
    public int getDcACState() {
        return dcACState;
    }
 
    public void setDcACState(int dcACState) {
        this.dcACState = dcACState;
    }
 
    public int getInsulaTionRes1() {
        return insulaTionRes1;
    }
 
    public void setInsulaTionRes1(int insulaTionRes1) {
        this.insulaTionRes1 = insulaTionRes1;
    }
 
    public int getInsulaTionRes2() {
        return insulaTionRes2;
    }
 
    public void setInsulaTionRes2(int insulaTionRes2) {
        this.insulaTionRes2 = insulaTionRes2;
    }
 
    public float getDcInputVol() {
        return dcInputVol;
    }
 
    public void setDcInputVol(float dcInputVol) {
        this.dcInputVol = dcInputVol;
    }
 
    public float getDcInputCur() {
        return dcInputCur;
    }
 
    public void setDcInputCur(float dcInputCur) {
        this.dcInputCur = dcInputCur;
    }
 
    public int getSetRun_Stop() {
        return setRun_Stop;
    }
 
    public void setSetRun_Stop(int setRun_Stop) {
        this.setRun_Stop = setRun_Stop;
    }
 
    public float getSetDischargeCur() {
        return setDischargeCur;
    }
 
    public void setSetDischargeCur(float setDischargeCur) {
        this.setDischargeCur = setDischargeCur;
    }
 
    public int getCommTxCnt() {
        return commTxCnt;
    }
 
    public void setCommTxCnt(int commTxCnt) {
        this.commTxCnt = commTxCnt;
    }
 
    public int getCommRxCnt() {
        return commRxCnt;
    }
 
    public void setCommRxCnt(int commRxCnt) {
        this.commRxCnt = commRxCnt;
    }
 
    public String getNote() {
        return note;
    }
 
    public void setNote(String note) {
        this.note = note;
    }
 
    @Override
    public String toString() {
        return "Fbs9100s_nibian_state{" +
                "num=" + num +
                ", dev_id=" + dev_id +
                ", nb_num=" + nb_num +
                ", record_time=" + record_time +
                ", ac_ASimVol=" + ac_ASimVol +
                ", ac_ASimCur=" + ac_ASimCur +
                ", ac_BSimVol=" + ac_BSimVol +
                ", ac_BSimCur=" + ac_BSimCur +
                ", ac_CSimVol=" + ac_CSimVol +
                ", ac_CSimCur=" + ac_CSimCur +
                ", a_HZ=" + a_HZ +
                ", b_HZ=" + b_HZ +
                ", c_HZ=" + c_HZ +
                ", power_Pa=" + power_Pa +
                ", power_Pb=" + power_Pb +
                ", power_Pc=" + power_Pc +
                ", power_Sa=" + power_Sa +
                ", power_Sb=" + power_Sb +
                ", power_Sc=" + power_Sc +
                ", temp1=" + temp1 +
                ", temp2=" + temp2 +
                ", runState=" + runState +
                ", dcACState=" + dcACState +
                ", insulaTionRes1=" + insulaTionRes1 +
                ", insulaTionRes2=" + insulaTionRes2 +
                ", dcInputVol=" + dcInputVol +
                ", dcInputCur=" + dcInputCur +
                ", setRun_Stop=" + setRun_Stop +
                ", setDischargeCur=" + setDischargeCur +
                ", commTxCnt=" + commTxCnt +
                ", commRxCnt=" + commRxCnt +
                ", note='" + note + '\'' +
                '}';
    }
}