whyclxw
6 天以前 9b85345450e2e194a84679bb6612f58a3124aee8
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
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
package com.whyc.pojo.db_data_history;
 
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 com.fasterxml.jackson.annotation.JsonFormat;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
import lombok.EqualsAndHashCode;
import lombok.experimental.Accessors;
 
import java.io.Serializable;
import java.util.Date;
 
/**
 * <p>
 * 电源110000005_2024_03历史实时数据表
 * </p>
 *
 * @author lxw
 * @since 2025-05-29
 */
@Data
@EqualsAndHashCode(callSuper = false)
@Accessors(chain = true)
@ApiModel(value="PwrdevHistorydataId", description="电源历史实时数据表")
public class PwrdevHistorydataId implements Serializable {
 
    private static final long serialVersionUID = 1L;
 
    @TableId(value = "num", type = IdType.AUTO)
    private Long num;
 
    @ApiModelProperty(value = "电源ID")
    private Long powerId;
 
    @ApiModelProperty(value = "更新时间")
    @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss",timezone = "Asia/Shanghai")
    private Date recordDatetime;
 
    @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss",timezone = "Asia/Shanghai")
    @TableField(exist = false)
    private Date recordDatetime1;
 
    @TableField(exist = false)
    private String tableName;
 
    @ApiModelProperty(value = "编号")
    private Integer recordNum;
 
    @ApiModelProperty(value = "1路交流输入A相电压")
    private Float acin1Vola;
 
    @ApiModelProperty(value = "1路交流输入B相电压")
    private Float acin1Volb;
 
    @ApiModelProperty(value = "交流1路输入C相电压")
    private Float acin1Volc;
 
    @ApiModelProperty(value = "2路交流输入A相电压")
    private Float acin2Vola;
 
    @ApiModelProperty(value = "2路交流输入B相电压")
    private Float acin2Volb;
 
    @ApiModelProperty(value = "2路交流输入C相电压")
    private Float acin2Volc;
 
    @ApiModelProperty(value = "交流A相输出电压")
    private Float acoutVola;
 
    @ApiModelProperty(value = "交流B相输出电压")
    private Float acoutVolb;
 
    @ApiModelProperty(value = "交流C相输出电压")
    private Float acoutVolc;
 
    @ApiModelProperty(value = "交流A相输出电流")
    private Float acoutCurra;
 
    @ApiModelProperty(value = "交流B相输出电流")
    private Float acoutCurrb;
 
    @ApiModelProperty(value = "交流C相输出电流")
    private Float acoutCurrc;
 
    @ApiModelProperty(value = "直流输出电压")
    private Float dcoutVol;
 
    @ApiModelProperty(value = "直流输出电流")
    private Float dcoutCurr;
 
    @ApiModelProperty(value = "电池组1组端电压")
    private Float battgroup1Vol;
 
    @ApiModelProperty(value = "电池组1电流")
    private Float battgroup1Curr;
 
    @ApiModelProperty(value = "电池组2组端电压")
    private Float battgroup2Vol;
 
    @ApiModelProperty(value = "电池组2电流")
    private Float battgroup2Curr;
 
    @ApiModelProperty(value = "环境温度")
    private Float temprature;
 
    @ApiModelProperty(value = "整流模块总输出电压")
    private Float mOutputvol;
 
    @ApiModelProperty(value = "模块1输出电流")
    private Float m1Outcurr;
 
    @ApiModelProperty(value = "模块2输出电流")
    private Float m2Outcurr;
 
    @ApiModelProperty(value = "模块3输出电流")
    private Float m3Outcurr;
 
    @ApiModelProperty(value = "模块4输出电流")
    private Float m4Outcurr;
 
    @ApiModelProperty(value = "模块5输出电流")
    private Float m5Outcurr;
 
    @ApiModelProperty(value = "模块6输出电流")
    private Float m6Outcurr;
 
    @ApiModelProperty(value = "模块7输出电流")
    private Float m7Outcurr;
 
    @ApiModelProperty(value = "模块8输出电流")
    private Float m8Outcurr;
 
    @ApiModelProperty(value = "模块9输出电流")
    private Float m9Outcurr;
 
    @ApiModelProperty(value = "模块10输出电流")
    private Float m10Outcurr;
 
    @ApiModelProperty(value = "模块11输出电流")
    private Float m11Outcurr;
 
    @ApiModelProperty(value = "模块12输出电流")
    private Float m12Outcurr;
 
    @ApiModelProperty(value = "模块13输出电流")
    private Float m13Outcurr;
 
    @ApiModelProperty(value = "模块14输出电流")
    private Float m14Outcurr;
 
    @ApiModelProperty(value = "模块15输出电流")
    private Float m15Outcurr;
 
    @ApiModelProperty(value = "模块16输出电流")
    private Float m16Outcurr;
 
    @ApiModelProperty(value = "第一路交流A相输入过压")
    private Integer isAcin1OverVola;
 
    @ApiModelProperty(value = "第一路交流A相输入欠压")
    private Integer isAcin1UnderVola;
 
    @ApiModelProperty(value = "第一路交流A相输入缺相")
    private Integer isAcin1LessA;
 
    @ApiModelProperty(value = "第一路交流B相输入过压")
    private Integer isAcin1OverVolb;
 
    @ApiModelProperty(value = "第一路交流B相输入欠压")
    private Integer isAcin1UnderVolb;
 
    @ApiModelProperty(value = "第一路交流B相输入缺相")
    private Integer isAcin1LessB;
 
    @ApiModelProperty(value = "第一路交流C相输入过压")
    private Integer isAcin1OverVolc;
 
    @ApiModelProperty(value = "第一路交流C相输入欠压")
    private Integer isAcin1UnderVolc;
 
    @ApiModelProperty(value = "第一路交流C相输入缺相")
    private Integer isAcin1LessC;
 
    @ApiModelProperty(value = "交流输入1防雷器故障")
    private Integer isAcin1ThunderErr;
 
    @ApiModelProperty(value = "交流输入1停电")
    private Integer isAcin1Powerdown;
 
    @ApiModelProperty(value = "第二路交流A相输入过压")
    private Integer isAcin2OverVola;
 
    @ApiModelProperty(value = "第二路交流A相输入欠压")
    private Integer isAcin2UnderVola;
 
    @ApiModelProperty(value = "第二路交流A相输入缺相")
    private Integer isAcin2LessA;
 
    @ApiModelProperty(value = "第二路交流B相输入过压")
    private Integer isAcin2OverVolb;
 
    @ApiModelProperty(value = "第二路交流B相输入欠压")
    private Integer isAcin2UnderVolb;
 
    @ApiModelProperty(value = "第二路交流B相输入缺相")
    private Integer isAcin2LessB;
 
    @ApiModelProperty(value = "第二路交流C相输入过压")
    private Integer isAcin2OverVolc;
 
    @ApiModelProperty(value = "第二路交流C相输入欠压")
    private Integer isAcin2UnderVolc;
 
    @ApiModelProperty(value = "第二路交流C相输入缺相")
    private Integer isAcin2LessC;
 
    @ApiModelProperty(value = "交流输入1防雷器故障")
    private Integer isAcin2ThunderErr;
 
    @ApiModelProperty(value = "交流输入2停电")
    private Integer isAcin2Powerdown;
 
    @ApiModelProperty(value = "监控器故障")
    private Integer isAcinMonitorerr;
 
    @ApiModelProperty(value = "直流输出过压")
    private Integer isDcoutOverVol;
 
    @ApiModelProperty(value = "直流输出欠压")
    private Integer isDcoutUnderVol;
 
    @ApiModelProperty(value = "电池组1下电告警")
    private Integer isBattgroup1Down;
 
    @ApiModelProperty(value = "电源均充")
    private Integer isJunCharge;
 
    @ApiModelProperty(value = "整流模块1故障")
    private Float isAcdcmod1Err;
 
    @ApiModelProperty(value = "整流模块1关机")
    private Float isAcdcmod1Off;
 
    @ApiModelProperty(value = "整流模块2故障")
    private Float isAcdcmod2Err;
 
    @ApiModelProperty(value = "整流模块2关机")
    private Float isAcdcmod2Off;
 
    @ApiModelProperty(value = "整流模块3故障")
    private Float isAcdcmod3Err;
 
    @ApiModelProperty(value = "整流模块3关机")
    private Float isAcdcmod3Off;
 
    @ApiModelProperty(value = "整流模块4故障")
    private Float isAcdcmod4Err;
 
    @ApiModelProperty(value = "整流模块4关机")
    private Float isAcdcmod4Off;
 
    @ApiModelProperty(value = "整流模块5故障")
    private Float isAcdcmod5Err;
 
    @ApiModelProperty(value = "整流模块5关机")
    private Float isAcdcmod5Off;
 
    @ApiModelProperty(value = "整流模块6故障")
    private Float isAcdcmod6Err;
 
    @ApiModelProperty(value = "整流模块6关机")
    private Float isAcdcmod6Off;
 
    @ApiModelProperty(value = "整流模块7故障")
    private Float isAcdcmod7Err;
 
    @ApiModelProperty(value = "整流模块7关机")
    private Float isAcdcmod7Off;
 
    @ApiModelProperty(value = "整流模块8故障")
    private Float isAcdcmod8Err;
 
    @ApiModelProperty(value = "整流模块8关机")
    private Float isAcdcmod8Off;
 
    @ApiModelProperty(value = "整流模块9故障")
    private Float isAcdcmod9Err;
 
    @ApiModelProperty(value = "整流模块9关机")
    private Float isAcdcmod9Off;
 
    @ApiModelProperty(value = "整流模块10故障")
    private Float isAcdcmod10Err;
 
    @ApiModelProperty(value = "整流模块10关机")
    private Float isAcdcmod10Off;
 
    @ApiModelProperty(value = "整流模块11故障")
    private Float isAcdcmod11Err;
 
    @ApiModelProperty(value = "整流模块11关机")
    private Float isAcdcmod11Off;
 
    @ApiModelProperty(value = "整流模块12故障")
    private Float isAcdcmod12Err;
 
    @ApiModelProperty(value = "整流模块12关机")
    private Float isAcdcmod12Off;
 
    @ApiModelProperty(value = "整流模块13故障")
    private Float isAcdcmod13Err;
 
    @ApiModelProperty(value = "整流模块13关机")
    private Float isAcdcmod13Off;
 
    @ApiModelProperty(value = "整流模块14故障")
    private Float isAcdcmod14Err;
 
    @ApiModelProperty(value = "整流模块14关机")
    private Float isAcdcmod14Off;
 
    @ApiModelProperty(value = "整流模块15故障")
    private Float isAcdcmod15Err;
 
    @ApiModelProperty(value = "整流模块15关机")
    private Float isAcdcmod15Off;
 
    @ApiModelProperty(value = "整流模块16故障")
    private Float isAcdcmod16Err;
 
    @ApiModelProperty(value = "整流模块16关机")
    private Float isAcdcmod16Off;
 
    @ApiModelProperty(value = "交流输入1跳闸")
    private Integer isAcin1Trip;
 
    @ApiModelProperty(value = "交流输入2跳闸")
    private Integer isAcin2Trip;
 
    @ApiModelProperty(value = "负载熔断")
    private Integer isLoaderFuse;
 
    @ApiModelProperty(value = "电池组1熔断")
    private Integer isBattgroup1Fuse;
 
    @ApiModelProperty(value = "电池组2熔断")
    private Integer isBattgroup2Fuse;
 
    @ApiModelProperty(value = "电源总告警")
    private Integer isTotalAlarm;
 
    @ApiModelProperty(value = "交流1路输入A相电流")
    private Float acin1Curra;
 
    @ApiModelProperty(value = "交流1路输入B相电流")
    private Float acin1Currb;
 
    @ApiModelProperty(value = "交流1路输入C相电流")
    private Float acin1Currc;
 
    @ApiModelProperty(value = "负载电流")
    private Float loaderCurr;
 
    @ApiModelProperty(value = "电池组1容量")
    private Float battgroup1Ah;
 
    @ApiModelProperty(value = "电池组1温度")
    private Float battgroup1Temp;
 
    @ApiModelProperty(value = "电池组2容量")
    private Float battgroup2Ah;
 
    @ApiModelProperty(value = "电池组2温度")
    private Float battgroup2Temp;
 
    @ApiModelProperty(value = "ACDC开关柜温度")
    private Float acdcmTemp;
 
    @ApiModelProperty(value = "模块1输出电压")
    private Float m1OutVol;
 
    @ApiModelProperty(value = "模块2输出电压")
    private Float m2OutVol;
 
    @ApiModelProperty(value = "模块3输出电压")
    private Float m3OutVol;
 
    @ApiModelProperty(value = "模块4输出电压")
    private Float m4OutVol;
 
    @ApiModelProperty(value = "模块5输出电压")
    private Float m5OutVol;
 
    @ApiModelProperty(value = "模块6输出电压")
    private Float m6OutVol;
 
    @ApiModelProperty(value = "模块7输出电压")
    private Float m7OutVol;
 
    @ApiModelProperty(value = "模块8输出电压")
    private Float m8OutVol;
 
    @ApiModelProperty(value = "模块9输出电压")
    private Float m9OutVol;
 
    @ApiModelProperty(value = "模块10输出电压")
    private Float m10OutVol;
 
    @ApiModelProperty(value = "模块11输出电压")
    private Float m11OutVol;
 
    @ApiModelProperty(value = "模块12输出电压")
    private Float m12OutVol;
 
    @ApiModelProperty(value = "模块13输出电压")
    private Float m13OutVol;
 
    @ApiModelProperty(value = "模块14输出电压")
    private Float m14OutVol;
 
    @ApiModelProperty(value = "模块15输出电压")
    private Float m15OutVol;
 
    @ApiModelProperty(value = "模块16输出电压")
    private Float m16OutVol;
 
    @ApiModelProperty(value = "交流A相过流")
    private Integer isAcb1OverCurra;
 
    @ApiModelProperty(value = "交流B相过流")
    private Integer isAcb1OverCurrb;
 
    @ApiModelProperty(value = "交流C相过流")
    private Integer isAcb1OverCurrc;
 
    @ApiModelProperty(value = "交流1路有电")
    private Integer isAcin1Poweron;
 
    @ApiModelProperty(value = "交流2路有电")
    private Integer isAcin2Poweron;
 
    @ApiModelProperty(value = "直流输出过流告警")
    private Integer isDcoutOverCurr;
 
    @ApiModelProperty(value = "电池组1充放电指示[1-充  0-放]")
    private Integer isBattgroup1State;
 
    @ApiModelProperty(value = "电池组2充放电指示[1-充  0-放]")
    private Integer isBattgroup2State;
 
    @ApiModelProperty(value = "电池组2下电告警")
    private Integer isBattgroup2Down;
 
    @ApiModelProperty(value = "电池组1充电过流")
    private Integer isBattgroup1Overchgcurr;
 
    @ApiModelProperty(value = "电池组2充电过流")
    private Integer isBattgroup2Overchgcurr;
 
    @ApiModelProperty(value = "模块1过压")
    private Integer isAcdcmod1Overvol;
 
    @ApiModelProperty(value = "模块1欠压")
    private Integer isAcdcmod1Undervol;
 
    @ApiModelProperty(value = "模块1过流")
    private Integer isAcdcmod1Overcurr;
 
    @ApiModelProperty(value = "模块1交流异常")
    private Integer isAcdcmod1Acerr;
 
    @ApiModelProperty(value = "模块1限流")
    private Integer isAcdcmod1Limitcurr;
 
    @ApiModelProperty(value = "模块2过压")
    private Integer isAcdcmod2Overvol;
 
    @ApiModelProperty(value = "模块2欠压")
    private Integer isAcdcmod2Undervol;
 
    @ApiModelProperty(value = "模块2过流")
    private Integer isAcdcmod2Overcurr;
 
    @ApiModelProperty(value = "模块2交流异常")
    private Integer isAcdcmod2Acerr;
 
    @ApiModelProperty(value = "模块2限流")
    private Integer isAcdcmod2Limitcurr;
 
    @ApiModelProperty(value = "模块3过压")
    private Integer isAcdcmod3Overvol;
 
    @ApiModelProperty(value = "模块3欠压")
    private Integer isAcdcmod3Undervol;
 
    @ApiModelProperty(value = "模块3过流")
    private Integer isAcdcmod3Overcurr;
 
    @ApiModelProperty(value = "模块3交流异常")
    private Integer isAcdcmod3Acerr;
 
    @ApiModelProperty(value = "模块3限流")
    private Integer isAcdcmod3Limitcurr;
 
    @ApiModelProperty(value = "模块4过压")
    private Integer isAcdcmod4Overvol;
 
    @ApiModelProperty(value = "模块4欠压")
    private Integer isAcdcmod4Undervol;
 
    @ApiModelProperty(value = "模块4过流")
    private Integer isAcdcmod4Overcurr;
 
    @ApiModelProperty(value = "模块4交流异常")
    private Integer isAcdcmod4Acerr;
 
    @ApiModelProperty(value = "模块4限流")
    private Integer isAcdcmod4Limitcurr;
 
    @ApiModelProperty(value = "模块5过压")
    private Integer isAcdcmod5Overvol;
 
    @ApiModelProperty(value = "模块5欠压")
    private Integer isAcdcmod5Undervol;
 
    @ApiModelProperty(value = "模块5过流")
    private Integer isAcdcmod5Overcurr;
 
    @ApiModelProperty(value = "模块5交流异常")
    private Integer isAcdcmod5Acerr;
 
    @ApiModelProperty(value = "模块5限流")
    private Integer isAcdcmod5Limitcurr;
 
    @ApiModelProperty(value = "模块6过压")
    private Integer isAcdcmod6Overvol;
 
    @ApiModelProperty(value = "模块6欠压")
    private Integer isAcdcmod6Undervol;
 
    @ApiModelProperty(value = "模块6过流")
    private Integer isAcdcmod6Overcurr;
 
    @ApiModelProperty(value = "模块6交流异常")
    private Integer isAcdcmod6Acerr;
 
    @ApiModelProperty(value = "模块6限流")
    private Integer isAcdcmod6Limitcurr;
 
    @ApiModelProperty(value = "模块7过压")
    private Integer isAcdcmod7Overvol;
 
    @ApiModelProperty(value = "模块7欠压")
    private Integer isAcdcmod7Undervol;
 
    @ApiModelProperty(value = "模块7过流")
    private Integer isAcdcmod7Overcurr;
 
    @ApiModelProperty(value = "模块7交流异常")
    private Integer isAcdcmod7Acerr;
 
    @ApiModelProperty(value = "模块7限流")
    private Integer isAcdcmod7Limitcurr;
 
    @ApiModelProperty(value = "模块8过压")
    private Integer isAcdcmod8Overvol;
 
    @ApiModelProperty(value = "模块8欠压")
    private Integer isAcdcmod8Undervol;
 
    @ApiModelProperty(value = "模块8过流")
    private Integer isAcdcmod8Overcurr;
 
    @ApiModelProperty(value = "模块8交流异常")
    private Integer isAcdcmod8Acerr;
 
    @ApiModelProperty(value = "模块8限流")
    private Integer isAcdcmod8Limitcurr;
 
    @ApiModelProperty(value = "模块9过压")
    private Integer isAcdcmod9Overvol;
 
    @ApiModelProperty(value = "模块9欠压")
    private Integer isAcdcmod9Undervol;
 
    @ApiModelProperty(value = "模块9过流")
    private Integer isAcdcmod9Overcurr;
 
    @ApiModelProperty(value = "模块9交流异常")
    private Integer isAcdcmod9Acerr;
 
    @ApiModelProperty(value = "模块9限流")
    private Integer isAcdcmod9Limitcurr;
 
    @ApiModelProperty(value = "模块10过压")
    private Integer isAcdcmod10Overvol;
 
    @ApiModelProperty(value = "模块10欠压")
    private Integer isAcdcmod10Undervol;
 
    @ApiModelProperty(value = "模块10过流")
    private Integer isAcdcmod10Overcurr;
 
    @ApiModelProperty(value = "模块10交流异常")
    private Integer isAcdcmod10Acerr;
 
    @ApiModelProperty(value = "模块10限流")
    private Integer isAcdcmod10Limitcurr;
 
    @ApiModelProperty(value = "模块11过压")
    private Integer isAcdcmod11Overvol;
 
    @ApiModelProperty(value = "模块11欠压")
    private Integer isAcdcmod11Undervol;
 
    @ApiModelProperty(value = "模块11过流")
    private Integer isAcdcmod11Overcurr;
 
    @ApiModelProperty(value = "模块11交流异常")
    private Integer isAcdcmod11Acerr;
 
    @ApiModelProperty(value = "模块11限流")
    private Integer isAcdcmod11Limitcurr;
 
    @ApiModelProperty(value = "模块12过压")
    private Integer isAcdcmod12Overvol;
 
    @ApiModelProperty(value = "模块12欠压")
    private Integer isAcdcmod12Undervol;
 
    @ApiModelProperty(value = "模块12过流")
    private Integer isAcdcmod12Overcurr;
 
    @ApiModelProperty(value = "模块12交流异常")
    private Integer isAcdcmod12Acerr;
 
    @ApiModelProperty(value = "模块12限流")
    private Integer isAcdcmod12Limitcurr;
 
    @ApiModelProperty(value = "模块13过压")
    private Integer isAcdcmod13Overvol;
 
    @ApiModelProperty(value = "模块13欠压")
    private Integer isAcdcmod13Undervol;
 
    @ApiModelProperty(value = "模块13过流")
    private Integer isAcdcmod13Overcurr;
 
    @ApiModelProperty(value = "模块13交流异常")
    private Integer isAcdcmod13Acerr;
 
    @ApiModelProperty(value = "模块13限流")
    private Integer isAcdcmod13Limitcurr;
 
    @ApiModelProperty(value = "模块14过压")
    private Integer isAcdcmod14Overvol;
 
    @ApiModelProperty(value = "模块14欠压")
    private Integer isAcdcmod14Undervol;
 
    @ApiModelProperty(value = "模块14过流")
    private Integer isAcdcmod14Overcurr;
 
    @ApiModelProperty(value = ".模块14交流异常")
    private Integer isAcdcmod14Acerr;
 
    @ApiModelProperty(value = "模块14限流")
    private Integer isAcdcmod14Limitcurr;
 
    @ApiModelProperty(value = "模块15过压")
    private Integer isAcdcmod15Overvol;
 
    @ApiModelProperty(value = "模块15欠压")
    private Integer isAcdcmod15Undervol;
 
    @ApiModelProperty(value = "模块15过流")
    private Integer isAcdcmod15Overcurr;
 
    @ApiModelProperty(value = "模块15交流异常")
    private Integer isAcdcmod15Acerr;
 
    @ApiModelProperty(value = "模块15限流")
    private Integer isAcdcmod15Limitcurr;
 
    @ApiModelProperty(value = "模块16过压")
    private Integer isAcdcmod16Overvol;
 
    @ApiModelProperty(value = "模块16欠压")
    private Integer isAcdcmod16Undervol;
 
    @ApiModelProperty(value = "模块16过流")
    private Integer isAcdcmod16Overcurr;
 
    @ApiModelProperty(value = "模块16交流异常")
    private Integer isAcdcmod16Acerr;
 
    @ApiModelProperty(value = "模块16限流")
    private Integer isAcdcmod16Limitcurr;
 
    @ApiModelProperty(value = "交流输入1熔断")
    private Integer isAcin1Fuse;
 
    @ApiModelProperty(value = "交流输入2熔断")
    private Integer isAcin2Fuse;
 
    @ApiModelProperty(value = "交流输入1三相不平衡")
    private Integer isAcin1Unbanlance;
 
    @ApiModelProperty(value = "交流输入2三相不平衡")
    private Integer isAcin2Unbanlance;
 
    @ApiModelProperty(value = "交流输入1频率异常")
    private Integer isAcin1Freqerr;
 
    @ApiModelProperty(value = "交流输入2频率异常")
    private Integer isAcin2Freqerr;
 
    @ApiModelProperty(value = "电池组1电压低")
    @TableField("is_battgroup1_volLow")
    private Integer isBattgroup1Vollow;
 
    @ApiModelProperty(value = "电池组2电压低")
    @TableField("is_battgroup2_volLow")
    private Integer isBattgroup2Vollow;
 
    @ApiModelProperty(value = "直流总故障")
    private Integer isDcoutTotalAlarm;
 
    @ApiModelProperty(value = "交流总故障")
    private Integer isAcinTotalAlarm;
 
    @ApiModelProperty(value = "模块1均充")
    private Integer isAcdcmod1Junchg;
 
    @ApiModelProperty(value = "模块2均充")
    private Integer isAcdcmod2Junchg;
 
    @ApiModelProperty(value = "模块3均充")
    private Integer isAcdcmod3Junchg;
 
    @ApiModelProperty(value = "模块4均充")
    private Integer isAcdcmod4Junchg;
 
    @ApiModelProperty(value = "模块5均充")
    private Integer isAcdcmod5Junchg;
 
    @ApiModelProperty(value = "模块6均充")
    private Integer isAcdcmod6Junchg;
 
    @ApiModelProperty(value = "模块7均充")
    private Integer isAcdcmod7Junchg;
 
    @ApiModelProperty(value = "模块8均充")
    private Integer isAcdcmod8Junchg;
 
    @ApiModelProperty(value = "模块9均充")
    private Integer isAcdcmod9Junchg;
 
    @ApiModelProperty(value = "模块10均充")
    private Integer isAcdcmod10Junchg;
 
    @ApiModelProperty(value = "模块11均充")
    private Integer isAcdcmod11Junchg;
 
    @ApiModelProperty(value = "模块12均充")
    private Integer isAcdcmod12Junchg;
 
    @ApiModelProperty(value = "模块13均充")
    private Integer isAcdcmod13Junchg;
 
    @ApiModelProperty(value = "模块14均充")
    private Integer isAcdcmod14Junchg;
 
    @ApiModelProperty(value = "模块15均充")
    private Integer isAcdcmod15Junchg;
 
    @ApiModelProperty(value = "模块16均充")
    private Integer isAcdcmod16Junchg;
 
    @ApiModelProperty(value = "协转与电源通信故障")
    private Integer isPowerdevCommerr;
 
    @ApiModelProperty(value = "交流1路输入A相电压-电表")
    private Float useracin1Vola;
 
    @ApiModelProperty(value = "交流1路输入B相电压-电表")
    private Float useracin1Volb;
 
    @ApiModelProperty(value = "交流1路输入C相电压-电表")
    private Float useracin1Volc;
 
    @ApiModelProperty(value = "交流1路输入A相电流-电表")
    private Float useracin1Curra;
 
    @ApiModelProperty(value = "交流1路输入B相电流-电表")
    private Float useracin1Currb;
 
    @ApiModelProperty(value = "交流1路输入C相电流-电表")
    private Float useracin1Currc;
 
    @ApiModelProperty(value = "交流1路频率-电表")
    private Float useracin1Freq;
 
    @ApiModelProperty(value = "交流2路输入A相电压-电表")
    private Float useracin2Vola;
 
    @ApiModelProperty(value = "交流2路输入B相电压-电表")
    private Float useracin2Volb;
 
    @ApiModelProperty(value = "交流2路输入C相电压-电表")
    private Float useracin2Volc;
 
    @ApiModelProperty(value = "交流2路输入A相电流-电表")
    private Float useracin2Curra;
 
    @ApiModelProperty(value = "交流2路输入B相电流-电表")
    private Float useracin2Currb;
 
    @ApiModelProperty(value = "交流2路输入C相电流-电表")
    private Float useracin2Currc;
 
    @ApiModelProperty(value = "交流2路频率-电表")
    private Float useracin2Freq;
 
    @ApiModelProperty(value = "温度1-电表")
    private Float mTemper1;
 
    @ApiModelProperty(value = "温度2-电表")
    private Float mTemper2;
 
    @ApiModelProperty(value = "温度3-电表")
    private Float mTemper3;
 
    @ApiModelProperty(value = "湿度1-电表")
    private Float mHumidity1;
 
    @ApiModelProperty(value = "湿度2-电表")
    private Float mHumidity2;
 
    @ApiModelProperty(value = "湿度3-电表")
    private Float mHumidity3;
 
    @ApiModelProperty(value = "交流1路停电-电表")
    private Integer useracin1Powerdown;
 
    @ApiModelProperty(value = "交流1路电表通信故障-电表")
    private Integer useracin1Commerr;
 
    @ApiModelProperty(value = "交流2路停电-电表")
    private Integer useracin2Powerdown;
 
    @ApiModelProperty(value = "交流2路电表通信故障-电表")
    private Integer useracin2Commerr;
 
    @ApiModelProperty(value = "温度传感器1通信故障-电表")
    private Integer isTempCommerr1;
 
    @ApiModelProperty(value = "温度传感器2通信故障-电表")
    private Integer isTempCommerr2;
 
    @ApiModelProperty(value = "温度传感器3通信故障-电表")
    private Integer isTempCommerr3;
 
    @ApiModelProperty(value = "湿度传感器1通信故障-电表")
    private Integer isHumiCommerr1;
 
    @ApiModelProperty(value = "湿度传感器2通信故障-电表")
    private Integer isHumiCommerr2;
 
    @ApiModelProperty(value = "湿度传感器3通信故障-电表")
    private Integer isHumiCommerr3;
 
    @ApiModelProperty(value = "烟雾1告警-电表")
    private Integer isSmokeAlarm1;
 
    @ApiModelProperty(value = "烟雾1传感器通信故障-电表")
    private Integer isSmokeCommerr1;
 
    @ApiModelProperty(value = "烟雾2告警-电表")
    private Integer isSmokeAlarm2;
 
    @ApiModelProperty(value = "烟雾2传感器通信故障-电表")
    private Integer isSmokeCommerr2;
 
    @ApiModelProperty(value = "烟雾3告警-电表")
    private Integer isSmokeAlarm3;
 
    @ApiModelProperty(value = "烟雾3传感器通信故障-电表")
    private Integer isSmokeCommerr3;
 
    @ApiModelProperty(value = "交流2路输入A相电流")
    private Float acin2Curra;
 
    @ApiModelProperty(value = "交流2路输入B相电流")
    private Float acin2Currb;
 
    @ApiModelProperty(value = "交流2路输入C相电流")
    private Float acin2Currc;
 
    @ApiModelProperty(value = "交流输入1分合闸状态:0---未知(用于兼容以前的),1-分闸,2-合闸,3-脱扣")
    private Integer acin1SwitchSt;
 
    @ApiModelProperty(value = "交流输入2分合闸状态    :0---未知(用于兼容以前的),1-分闸,2-合闸,3-脱扣")
    private Integer acin2SwitchSt;
 
 
}