whyclxw
2024-07-01 0ce771b4a4ff5897dc91bb1b84a4561781b00ca5
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
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
package com.whyc.pojo.db_ckpwrdev_data_rt;
 
import com.baomidou.mybatisplus.annotation.IdType;
import com.baomidou.mybatisplus.annotation.TableField;
import com.baomidou.mybatisplus.annotation.TableId;
import com.baomidou.mybatisplus.annotation.TableName;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
 
import java.io.Serializable;
import java.util.List;
 
/**
 *
 * 测控电源遥测量模拟设置表
 */
@Data
@TableName(schema = "db_ckpwrdev_data_rt",value = "tb_ckpowerdev_rt_set")
@ApiModel("测控电源遥测量模拟设置表")
public class CKPowerDevRtSet implements Serializable {
 
    private static final long serialVersionUID = 1L;
 
    @ApiModelProperty(value = "自增主键")
    @TableId(value = "num", type = IdType.AUTO)
    private Long num;
 
    @ApiModelProperty(value = "电源id")
    private Integer powerDeviceId;
 
    @ApiModelProperty(value = "命令")
    private Integer opCmd;
 
    @ApiModelProperty(value = "第1路交流A相输入电压-模拟值")
    @TableField("acin1_vola_fake")
    private Float acIn1VolAFake;
 
    @ApiModelProperty(value = "第1路交流A相输入电压使用状态[0-真实值   1-模拟值]")
    @TableField("acin1_vola_st")
    private Integer acIn1VolASt;
 
    @ApiModelProperty(value = "第1路交流B相输入电压-模拟值")
    @TableField("acin1_volb_fake")
    private Float acIn1VolBFake;
 
    @ApiModelProperty(value = "第1路交流B相输入电压使用状态[0-真实值   1-模拟值]")
    @TableField("acin1_volb_st")
    private Integer acIn1VolBSt;
 
    @ApiModelProperty(value = "第1路交流C相输入电压-模拟值")
    @TableField("acin1_volc_fake")
    private Float acIn1VolCFake;
 
    @ApiModelProperty(value = "第1路交流C相输入电压使用状态[0-真实值   1-模拟值]")
    @TableField("acin1_volc_st")
    private Integer acIn1VolCSt;
 
    @ApiModelProperty(value = "第1路交流A相输入电流-模拟值")
    @TableField("acin1_curra_fake")
    private Float acIn1CurrAFake;
 
    @ApiModelProperty(value = "第1路交流A相输入电流使用状态[0-真实值   1-模拟值]")
    @TableField("acin1_curra_st")
    private Integer acIn1CurrASt;
 
    @ApiModelProperty(value = "第1路交流B相输入电流-模拟值")
    @TableField("acin1_currb_fake")
    private Float acIn1CurrBFake;
 
    @ApiModelProperty(value = "第1路交流B相输入电流使用状态[0-真实值   1-模拟值]")
    @TableField("acin1_currb_st")
    private Integer acIn1CurrBSt;
 
    @ApiModelProperty(value = "第1路交流C相输入电流-模拟值")
    @TableField("acin1_currc_fake")
    private Float acIn1CurrCFake;
 
    @ApiModelProperty(value = "第1路交流C相输入电流使用状态[0-真实值   1-模拟值]")
    @TableField("acin1_currc_st")
    private Integer acIn1CurrCSt;
 
    @ApiModelProperty(value = "第2路交流A相输入电压-模拟值")
    @TableField("acin2_vola_fake")
    private Float acIn2VolAFake;
 
    @ApiModelProperty(value = "第2路交流A相输入电压使用状态[0-真实值   1-模拟值]")
    @TableField("acin2_vola_st")
    private Integer acIn2VolASt;
 
    @ApiModelProperty(value = "第2路交流B相输入电压-模拟值")
    @TableField("acin2_volb_fake")
    private Float acIn2VolBFake;
 
    @ApiModelProperty(value = "第2路交流B相输入电压使用状态[0-真实值   1-模拟值]")
    @TableField("acin2_volb_st")
    private Integer acIn2VolBSt;
 
    @ApiModelProperty(value = "第2路交流C相输入电压-模拟值")
    @TableField("acin2_volc_fake")
    private Float acIn2VolCFake;
 
    @ApiModelProperty(value = "第2路交流C相输入电压使用状态[0-真实值   1-模拟值]")
    @TableField("acin2_volc_st")
    private Integer acIn2VolCSt;
 
    @ApiModelProperty(value = "第2路交流A相输入电流-模拟值")
    @TableField("acin2_curra_fake")
    private Float acIn2CurrAFake;
 
    @ApiModelProperty(value = "第2路交流A相输入电流使用状态[0-真实值   1-模拟值]")
    @TableField("acin2_curra_st")
    private Integer acIn2CurrASt;
 
    @ApiModelProperty(value = "第2路交流B相输入电流-模拟值")
    @TableField("acin2_currb_fake")
    private Float acIn2CurrBFake;
 
    @ApiModelProperty(value = "第2路交流B相输入电流使用状态[0-真实值   1-模拟值]")
    @TableField("acin2_currb_st")
    private Integer acIn2CurrBSt;
 
    @ApiModelProperty(value = "第2路交流C相输入电流-模拟值")
    @TableField("acin2_currc_fake")
    private Float acIn2CurrCFake;
 
    @ApiModelProperty(value = "第2路交流C相输入电流使用状态[0-真实值   1-模拟值]")
    @TableField("acin2_currc_st")
    private Integer acIn2CurrCSt;
 
    @ApiModelProperty(value = "交流配电柜温度-模拟值")
    @TableField("ac_cabinet_temp_fake")
    private Float acCabinetTempFake;
 
    @ApiModelProperty(value = "交流配电柜温度使用状态[0-真实值   1-模拟值]")
    @TableField("ac_cabinet_temp_st")
    private Integer acCabinetTempSt;
 
    @ApiModelProperty(value = "直流配电柜温度-模拟值")
    @TableField("dc_cabinet_temp_fake")
    private Float dcCabinetTempFake;
 
    @ApiModelProperty(value = "直流配电柜温度使用状态[0-真实值   1-模拟值]")
    @TableField("dc_cabinet_temp_st")
    private Integer dcCabinetTempSt;
 
    @ApiModelProperty(value = "高频开关配电柜温度-模拟值")
    @TableField("highfrq_cabinet_temp_fake")
    private Float highFrqCabinetTempFake;
 
    @ApiModelProperty(value = "高频开关配电柜温度使用状态[0-真实值   1-模拟值]")
    @TableField("highfrq_cabinet_temp_st")
    private Integer highFrqCabinetTempSt;
 
    @ApiModelProperty(value = "交流A相输出电压-模拟值")
    @TableField("acout_vola_fake")
    private Float acOutVolAFake;
 
    @ApiModelProperty(value = "交流A相输出电压使用状态 [0-真实值   1-模拟值]")
    @TableField("acout_vola_st")
    private Integer acOutVolASt;
 
    @ApiModelProperty(value = "交流B相输出电压-模拟值")
    @TableField("acout_volb_fake")
    private Float acOutVolBFake;
 
    @ApiModelProperty(value = "交流B相输出电压使用状态 [0-真实值   1-模拟值]")
    @TableField("acout_volb_st")
    private Integer acOutVolBSt;
 
    @ApiModelProperty(value = "交流C相输出电压-模拟值")
    @TableField("acout_volc_fake")
    private Float acOutVolCFake;
 
    @ApiModelProperty(value = "交流C相输出电压使用状态 [0-真实值   1-模拟值]")
    @TableField("acout_volc_st")
    private Integer acOutVolCSt;
 
    @ApiModelProperty(value = "交流A相输出电流-模拟值")
    @TableField("acout_curra_fake")
    private Float acOutCurrAFake;
 
    @ApiModelProperty(value = "交流A相输出电流使用状态 [0-真实值   1-模拟值]")
    @TableField("acout_curra_st")
    private Integer acOutCurrASt;
 
    @ApiModelProperty(value = "交流B相输出电流-模拟值")
    @TableField("acout_currb_fake")
    private Float acOutCurrBFake;
 
    @ApiModelProperty(value = "交流B相输出电流使用状态 [0-真实值   1-模拟值]")
    @TableField("acout_currb_st")
    private Integer acOutCurrBSt;
 
    @ApiModelProperty(value = "交流C相输出电流-模拟值")
    @TableField("acout_currc_fake")
    private Float acOutCurrCFake;
 
    @ApiModelProperty(value = "交流C相输出电流使用状态 [0-真实值   1-模拟值]")
    @TableField("acout_currc_st")
    private Integer acOutCurrCSt;
 
    @ApiModelProperty(value = "直流输出电压-模拟值")
    @TableField("dcout_vol_fake")
    private Float dcOutVolFake;
 
    @ApiModelProperty(value = "直流输出电压使用状态 [0-真实值   1-模拟值]")
    @TableField("dcout_vol_st")
    private Integer dcOutVolSt;
 
    @ApiModelProperty(value = "负载电流-模拟值")
    @TableField("load_curr_fake")
    private Float loadCurrFake;
 
    @ApiModelProperty(value = "负载电流使用状态 [0-真实值   1-模拟值]")
    @TableField("load_curr_st")
    private Integer loadCurrSt;
 
    @ApiModelProperty(value = "蓄电池组充电电流-模拟值")
    @TableField("batt_charcurr_fake")
    private Float battCharCurrFake;
 
    @ApiModelProperty(value = "蓄电池组充电电流使用状态 [0-真实值   1-模拟值]")
    @TableField("batt_charcurr_st")
    private Integer battCharCurrSt;
 
    @ApiModelProperty(value = "第1路直流输入电压-模拟值")
    @TableField("dcin1_vol_fake")
    private Float dcIn1VolFake;
 
    @ApiModelProperty(value = "第1路直流输入电压使用状态 [0-真实值   1-模拟值]")
    @TableField("dcin1_vol_st")
    private Integer dcIn1VolSt;
 
    @ApiModelProperty(value = "第2路直流输入电压-模拟值")
    @TableField("dcin2_vol_fake")
    private Float dcIn2VolFake;
 
    @ApiModelProperty(value = "第2路直流输入电压使用状态 [0-真实值   1-模拟值]")
    @TableField("dcin2_vol_st")
    private Integer dcIn2VolSt;
 
    @ApiModelProperty(value = "1段直流母线输出电压-模拟值")
    @TableField("dcout1_vol_fake")
    private Float dcOut1VolFake;
 
    @ApiModelProperty(value = "1段直流母线输出电压使用状态 [0-真实值   1-模拟值]")
    @TableField("dcout1_vol_st")
    private Integer dcOut1VolSt;
 
    @ApiModelProperty(value = "2段直流母线输出电压-模拟值")
    @TableField("dcout2_vol_fake")
    private Float dcOut2VolFake;
 
    @ApiModelProperty(value = "2段直流母线输出电压使用状态 [0-真实值   1-模拟值]")
    @TableField("dcout2_vol_st")
    private Integer dcOut2VolSt;
 
    @ApiModelProperty(value = "1段直流母线输出电流-模拟值")
    @TableField("dcout1_curr_fake")
    private Float dcOut1CurrFake;
 
    @ApiModelProperty(value = "1段直流母线输出电流使用状态 [0-真实值   1-模拟值]")
    @TableField("dcout1_curr_st")
    private Integer dcOut1CurrSt;
 
    @ApiModelProperty(value = "2段直流母线输出电流-模拟值")
    @TableField("dcout2_curr_fake")
    private Float dcOut2CurrFake;
 
    @ApiModelProperty(value = "2段直流母线输出电流使用状态 [0-真实值   1-模拟值]")
    @TableField("dcout2_curr_st")
    private Integer dcOut2CurrSt;
 
    @ApiModelProperty(value = "电池组1端电压-模拟值")
    @TableField("batt1_groupvol_fake")
    private Float batt1GroupVolFake;
 
    @ApiModelProperty(value = "电池组1端电压使用状态 [0-真实值   1-模拟值]")
    @TableField("batt1_groupvol_st")
    private Integer batt1GroupVolSt;
 
    @ApiModelProperty(value = "电池组2端电压-模拟值")
    @TableField("batt2_groupvol_fake")
    private Float batt2GroupVolFake;
 
    @ApiModelProperty(value = "电池组1端电压使用状态 [0-真实值   1-模拟值]")
    @TableField("batt2_groupvol_st")
    private Integer batt2GroupVolSt;
 
    @ApiModelProperty(value = "模块1输出电流-模拟值")
    @TableField("m1_outcurr_fake")
    private Float m1OutCurrFake;
 
    @ApiModelProperty(value = "模块1输出电流使用状态 [0-真实值   1-模拟值]")
    @TableField("m1_outcurr_st")
    private Integer m1OutCurrSt;
 
    @ApiModelProperty(value = "模块2输出电流-模拟值")
    @TableField("m2_outcurr_fake")
    private Float m2OutCurrFake;
 
    @ApiModelProperty(value = "模块2输出电流使用状态 [0-真实值   1-模拟值]")
    @TableField("m2_outcurr_st")
    private Integer m2OutCurrSt;
 
    @ApiModelProperty(value = "模块3输出电流-模拟值")
    @TableField("m3_outcurr_fake")
    private Float m3OutCurrFake;
 
    @ApiModelProperty(value = "模块3输出电流使用状态 [0-真实值   1-模拟值]")
    @TableField("m3_outcurr_st")
    private Integer m3OutCurrSt;
 
    @ApiModelProperty(value = "模块4输出电流-模拟值")
    @TableField("m4_outcurr_fake")
    private Float m4OutCurrFake;
 
    @ApiModelProperty(value = "模块4输出电流使用状态 [0-真实值   1-模拟值]")
    @TableField("m4_outcurr_st")
    private Integer m4OutCurrSt;
 
    @ApiModelProperty(value = "模块5输出电流-模拟值")
    @TableField("m5_outcurr_fake")
    private Float m5OutCurrFake;
 
    @ApiModelProperty(value = "模块5输出电流使用状态 [0-真实值   1-模拟值]")
    @TableField("m5_outcurr_st")
    private Integer m5OutCurrSt;
 
    @ApiModelProperty(value = "模块6输出电流-模拟值")
    @TableField("m6_outcurr_fake")
    private Float m6OutCurrFake;
 
    @ApiModelProperty(value = "模块6输出电流使用状态 [0-真实值   1-模拟值]")
    @TableField("m6_outcurr_st")
    private Integer m6OutCurrSt;
 
    @ApiModelProperty(value = "模块7输出电流-模拟值")
    @TableField("m7_outcurr_fake")
    private Float m7OutCurrFake;
 
    @ApiModelProperty(value = "模块7输出电流使用状态 [0-真实值   1-模拟值]")
    @TableField("m7_outcurr_st")
    private Integer m7OutCurrSt;
 
    @ApiModelProperty(value = "模块8输出电流-模拟值")
    @TableField("m8_outcurr_fake")
    private Float m8OutCurrFake;
 
    @ApiModelProperty(value = "模块8输出电流使用状态 [0-真实值   1-模拟值]")
    @TableField("m8_outcurr_st")
    private Integer m8OutCurrSt;
 
    @ApiModelProperty(value = "模块9输出电流-模拟值")
    @TableField("m9_outcurr_fake")
    private Float m9OutCurrFake;
 
    @ApiModelProperty(value = "模块9输出电流使用状态 [0-真实值   1-模拟值]")
    @TableField("m9_outcurr_st")
    private Integer m9OutCurrSt;
 
    @ApiModelProperty(value = "模块10输出电流-模拟值")
    @TableField("m10_outcurr_fake")
    private Float m10OutCurrFake;
 
    @ApiModelProperty(value = "模块10输出电流使用状态 [0-真实值   1-模拟值]")
    @TableField("m10_outcurr_st")
    private Integer m10OutCurrSt;
 
    @ApiModelProperty(value = "模块11输出电流-模拟值")
    @TableField("m11_outcurr_fake")
    private Float m11OutCurrFake;
 
    @ApiModelProperty(value = "模块11输出电流使用状态 [0-真实值   1-模拟值]")
    @TableField("m11_outcurr_st")
    private Integer m11OutCurrSt;
 
    @ApiModelProperty(value = "模块12输出电流-模拟值")
    @TableField("m12_outcurr_fake")
    private Float m12OutCurrFake;
 
    @ApiModelProperty(value = "模块12输出电流使用状态 [0-真实值   1-模拟值]")
    @TableField("m12_outcurr_st")
    private Integer m12OutCurrSt;
 
    @ApiModelProperty(value = "模块13输出电流-模拟值")
    @TableField("m13_outcurr_fake")
    private Float m13OutCurrFake;
 
    @ApiModelProperty(value = "模块13输出电流使用状态 [0-真实值   1-模拟值]")
    @TableField("m13_outcurr_st")
    private Integer m13OutCurrSt;
 
    @ApiModelProperty(value = "模块14输出电流-模拟值")
    @TableField("m14_outcurr_fake")
    private Float m14OutCurrFake;
 
    @ApiModelProperty(value = "模块14输出电流使用状态 [0-真实值   1-模拟值]")
    @TableField("m14_outcurr_st")
    private Integer m14OutCurrSt;
 
    @ApiModelProperty(value = "模块15输出电流-模拟值")
    @TableField("m15_outcurr_fake")
    private Float m15OutCurrFake;
 
    @ApiModelProperty(value = "模块15输出电流使用状态 [0-真实值   1-模拟值]")
    @TableField("m15_outcurr_st")
    private Integer m15OutCurrSt;
 
    @ApiModelProperty(value = "模块16输出电流-模拟值")
    @TableField("m16_outcurr_fake")
    private Float m16OutCurrFake;
 
    @ApiModelProperty(value = "模块16输出电流使用状态 [0-真实值   1-模拟值]")
    @TableField("m16_outcurr_st")
    private Integer m16OutCurrSt;
 
    @ApiModelProperty(value = "模块17输出电流-模拟值")
    @TableField("m17_outcurr_fake")
    private Float m17OutCurrFake;
 
    @ApiModelProperty(value = "模块17输出电流使用状态 [0-真实值   1-模拟值]")
    @TableField("m17_outcurr_st")
    private Integer m17OutCurrSt;
 
    @ApiModelProperty(value = "模块18输出电流-模拟值")
    @TableField("m18_outcurr_fake")
    private Float m18OutCurrFake;
 
    @ApiModelProperty(value = "模块18输出电流使用状态 [0-真实值   1-模拟值]")
    @TableField("m18_outcurr_st")
    private Integer m18OutCurrSt;
 
    @ApiModelProperty(value = "模块19输出电流-模拟值")
    @TableField("m19_outcurr_fake")
    private Float m19OutCurrFake;
 
    @ApiModelProperty(value = "模块19输出电流使用状态 [0-真实值   1-模拟值]")
    @TableField("m19_outcurr_st")
    private Integer m19OutCurrSt;
 
    @ApiModelProperty(value = "模块20输出电流-模拟值")
    @TableField("m20_outcurr_fake")
    private Float m20OutCurrFake;
 
    @ApiModelProperty(value = "模块20输出电流使用状态 [0-真实值   1-模拟值]")
    @TableField("m20_outcurr_st")
    private Integer m20OutCurrSt;
 
    @ApiModelProperty(value = "模块21输出电流-模拟值")
    @TableField("m21_outcurr_fake")
    private Float m21OutCurrFake;
 
    @ApiModelProperty(value = "模块21输出电流使用状态 [0-真实值   1-模拟值]")
    @TableField("m21_outcurr_st")
    private Integer m21OutCurrSt;
 
    @ApiModelProperty(value = "模块22输出电流-模拟值")
    @TableField("m22_outcurr_fake")
    private Float m22OutCurrFake;
 
    @ApiModelProperty(value = "模块22输出电流使用状态 [0-真实值   1-模拟值]")
    @TableField("m22_outcurr_st")
    private Integer m22OutCurrSt;
 
    @ApiModelProperty(value = "模块23输出电流-模拟值")
    @TableField("m23_outcurr_fake")
    private Float m23OutCurrFake;
 
    @ApiModelProperty(value = "模块23输出电流使用状态 [0-真实值   1-模拟值]")
    @TableField("m23_outcurr_st")
    private Integer m23OutCurrSt;
 
    @ApiModelProperty(value = "模块24输出电流-模拟值")
    @TableField("m24_outcurr_fake")
    private Float m24OutCurrFake;
 
    @ApiModelProperty(value = "模块24输出电流使用状态 [0-真实值   1-模拟值]")
    @TableField("m24_outcurr_st")
    private Integer m24OutCurrSt;
 
    @ApiModelProperty(value = "模块25输出电流-模拟值")
    @TableField("m25_outcurr_fake")
    private Float m25OutCurrFake;
 
    @ApiModelProperty(value = "模块25输出电流使用状态 [0-真实值   1-模拟值]")
    @TableField("m25_outcurr_st")
    private Integer m25OutCurrSt;
 
    @ApiModelProperty(value = "模块26输出电流-模拟值")
    @TableField("m26_outcurr_fake")
    private Float m26OutCurrFake;
 
    @ApiModelProperty(value = "模块26输出电流使用状态 [0-真实值   1-模拟值]")
    @TableField("m26_outcurr_st")
    private Integer m26OutCurrSt;
 
    @ApiModelProperty(value = "模块27输出电流-模拟值")
    @TableField("m27_outcurr_fake")
    private Float m27OutCurrFake;
 
    @ApiModelProperty(value = "模块27输出电流使用状态 [0-真实值   1-模拟值]")
    @TableField("m27_outcurr_st")
    private Integer m27OutCurrSt;
 
    @ApiModelProperty(value = "模块28输出电流-模拟值")
    @TableField("m28_outcurr_fake")
    private Float m28OutCurrFake;
 
    @ApiModelProperty(value = "模块28输出电流使用状态 [0-真实值   1-模拟值]")
    @TableField("m28_outcurr_st")
    private Integer m28OutCurrSt;
 
    @ApiModelProperty(value = "模块29输出电流-模拟值")
    @TableField("m29_outcurr_fake")
    private Float m29OutCurrFake;
 
    @ApiModelProperty(value = "模块29输出电流使用状态 [0-真实值   1-模拟值]")
    @TableField("m29_outcurr_st")
    private Integer m29OutCurrSt;
 
    @ApiModelProperty(value = "模块30输出电流-模拟值")
    @TableField("m30_outcurr_fake")
    private Float m30OutCurrFake;
 
    @ApiModelProperty(value = "模块30输出电流使用状态 [0-真实值   1-模拟值]")
    @TableField("m30_outcurr_st")
    private Integer m30OutCurrSt;
 
    @ApiModelProperty(value = "模块31输出电流-模拟值")
    @TableField("m31_outcurr_fake")
    private Float m31OutCurrFake;
 
    @ApiModelProperty(value = "模块31输出电流使用状态 [0-真实值   1-模拟值]")
    @TableField("m31_outcurr_st")
    private Integer m31OutCurrSt;
 
    @ApiModelProperty(value = "模块32输出电流-模拟值")
    @TableField("m32_outcurr_fake")
    private Float m32OutCurrFake;
 
    @ApiModelProperty(value = "模块32输出电流使用状态 [0-真实值   1-模拟值]")
    @TableField("m32_outcurr_st")
    private Integer m32OutCurrSt;
 
    @ApiModelProperty(value = "第1路交流A相输入电压-模拟值  CPSS")
    @TableField("ac1_invola_fake")
    private Float ac1InVolAFake;
 
    @ApiModelProperty(value = "第1路交流A相输入电压-使用状态 [0-真实值   1-模拟值]  CPSS")
    @TableField("ac1_invola_st")
    private Integer ac1InVolASt;
 
    @ApiModelProperty(value = "第1路交流B相输入电压-模拟值  CPSS")
    @TableField("ac1_involb_fake")
    private Float ac1InVolBFake;
 
    @ApiModelProperty(value = "第1路交流B相输入电压-使用状态 [0-真实值   1-模拟值]  CPSS")
    @TableField("ac1_involb_st")
    private Integer ac1InVolBSt;
 
    @ApiModelProperty(value = "第1路交流C相输入电压-模拟值  CPSS")
    @TableField("ac1_involc_fake")
    private Float ac1InVolCFake;
 
    @ApiModelProperty(value = "第1路交流C相输入电压-使用状态 [0-真实值   1-模拟值]  CPSS")
    @TableField("ac1_involc_st")
    private Integer ac1InVolCSt;
 
    @ApiModelProperty(value = "第2路交流A相输入电压-模拟值  CPSS")
    @TableField("ac2_invola_fake")
    private Float ac2InVolAFake;
 
    @ApiModelProperty(value = "第2路交流A相输入电压-使用状态 [0-真实值   1-模拟值]  CPSS")
    @TableField("ac2_invola_st")
    private Integer ac2InVolASt;
 
    @ApiModelProperty(value = "第2路交流B相输入电压-模拟值  CPSS")
    @TableField("ac2_involb_fake")
    private Float ac2InVolBFake;
 
    @ApiModelProperty(value = "第2路交流B相输入电压-使用状态 [0-真实值   1-模拟值]  CPSS")
    @TableField("ac2_involb_st")
    private Integer ac2InVolBSt;
 
    @ApiModelProperty(value = "第2路交流C相输入电压-模拟值  CPSS")
    @TableField("ac2_involc_fake")
    private Float ac2InVolCFake;
 
    @ApiModelProperty(value = "第2路交流C相输入电压-使用状态 [0-真实值   1-模拟值]  CPSS")
    @TableField("ac2_involc_st")
    private Integer ac2InVolCSt;
 
    @TableField(exist = false)
    private List<CKPowerDevRtSetLog> logList;
 
}