rzg
2020-10-22 d293563af43409590172f534a74c5a5cb72ecb04
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
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
package com.yckj.bean;
 
import org.springframework.stereotype.Repository;
 
import java.io.Serializable;
import java.util.Date;
 
/**
 * tb_battdata_rt
 * @author 
 */
 
@Repository
public class TbBattsysParam implements Serializable {
    private Long num;
 
    private Integer battgroupid;
 
    private Date recordtime;
 
    private Double groupcurrent;
 
    private Integer battstate;
 
    private Double monvol1;
 
    private Double monvol2;
 
    private Double monvol3;
 
    private Double monvol4;
 
    private Double monvol5;
 
    private Double monvol6;
 
    private Double monvol7;
 
    private Double monvol8;
 
    private Double monvol9;
 
    private Double monvol10;
 
    private Double monvol11;
 
    private Double monvol12;
 
    private Double monvol13;
 
    private Double monvol14;
 
    private Double monvol15;
 
    private Double monvol16;
 
    private Double monvol17;
 
    private Double monvol18;
 
    private Double monvol19;
 
    private Double monvol20;
 
    private Double monvol21;
 
    private Double monvol22;
 
    private Double monvol23;
 
    private Double monvol24;
 
    private Double monvol25;
 
    private Double monvol26;
 
    private Double monvol27;
 
    private Double monvol28;
 
    private Double monvol29;
 
    private Double monvol30;
 
    private Double monvol31;
 
    private Double monvol32;
 
    private Double monvol33;
 
    private Double monvol34;
 
    private Double monvol35;
 
    private Double monvol36;
 
    private Double monvol37;
 
    private Double monvol38;
 
    private Double monvol39;
 
    private Double monvol40;
 
    private Double monvol41;
 
    private Double monvol42;
 
    private Double monvol43;
 
    private Double monvol44;
 
    private Double monvol45;
 
    private Double monvol46;
 
    private Double monvol47;
 
    private Double monvol48;
 
    private Double monvol49;
 
    private Double monvol50;
 
    private Double monvol51;
 
    private Double monvol52;
 
    private Double monvol53;
 
    private Double monvol54;
 
    private Double monvol55;
 
    private Double monvol56;
 
    private Double monvol57;
 
    private Double monvol58;
 
    private Double monvol59;
 
    private Double monvol60;
 
    private Double monvol61;
 
    private Double monvol62;
 
    private Double monvol63;
 
    private Double monvol64;
 
    private Double monvol65;
 
    private Double monvol66;
 
    private Double monvol67;
 
    private Double monvol68;
 
    private Double monvol69;
 
    private Double monvol70;
 
    private Double monvol71;
 
    private Double monvol72;
 
    private Double monvol73;
 
    private Double monvol74;
 
    private Double monvol75;
 
    private Double monvol76;
 
    private Double monvol77;
 
    private Double monvol78;
 
    private Double monvol79;
 
    private Double monvol80;
 
    private Double monvol81;
 
    private Double monvol82;
 
    private Double monvol83;
 
    private Double monvol84;
 
    private static final long serialVersionUID = 1L;
 
    public Long getNum() {
        return num;
    }
 
    public void setNum(Long num) {
        this.num = num;
    }
 
    public Integer getBattgroupid() {
        return battgroupid;
    }
 
    public void setBattgroupid(Integer battgroupid) {
        this.battgroupid = battgroupid;
    }
 
    public Date getRecordtime() {
        return recordtime;
    }
 
    public void setRecordtime(Date recordtime) {
        this.recordtime = recordtime;
    }
 
    public Double getGroupcurrent() {
        return groupcurrent;
    }
 
    public void setGroupcurrent(Double groupcurrent) {
        this.groupcurrent = groupcurrent;
    }
 
    public Integer getBattstate() {
        return battstate;
    }
 
    public void setBattstate(Integer battstate) {
        this.battstate = battstate;
    }
 
    public Double getMonvol1() {
        return monvol1;
    }
 
    public void setMonvol1(Double monvol1) {
        this.monvol1 = monvol1;
    }
 
    public Double getMonvol2() {
        return monvol2;
    }
 
    public void setMonvol2(Double monvol2) {
        this.monvol2 = monvol2;
    }
 
    public Double getMonvol3() {
        return monvol3;
    }
 
    public void setMonvol3(Double monvol3) {
        this.monvol3 = monvol3;
    }
 
    public Double getMonvol4() {
        return monvol4;
    }
 
    public void setMonvol4(Double monvol4) {
        this.monvol4 = monvol4;
    }
 
    public Double getMonvol5() {
        return monvol5;
    }
 
    public void setMonvol5(Double monvol5) {
        this.monvol5 = monvol5;
    }
 
    public Double getMonvol6() {
        return monvol6;
    }
 
    public void setMonvol6(Double monvol6) {
        this.monvol6 = monvol6;
    }
 
    public Double getMonvol7() {
        return monvol7;
    }
 
    public void setMonvol7(Double monvol7) {
        this.monvol7 = monvol7;
    }
 
    public Double getMonvol8() {
        return monvol8;
    }
 
    public void setMonvol8(Double monvol8) {
        this.monvol8 = monvol8;
    }
 
    public Double getMonvol9() {
        return monvol9;
    }
 
    public void setMonvol9(Double monvol9) {
        this.monvol9 = monvol9;
    }
 
    public Double getMonvol10() {
        return monvol10;
    }
 
    public void setMonvol10(Double monvol10) {
        this.monvol10 = monvol10;
    }
 
    public Double getMonvol11() {
        return monvol11;
    }
 
    public void setMonvol11(Double monvol11) {
        this.monvol11 = monvol11;
    }
 
    public Double getMonvol12() {
        return monvol12;
    }
 
    public void setMonvol12(Double monvol12) {
        this.monvol12 = monvol12;
    }
 
    public Double getMonvol13() {
        return monvol13;
    }
 
    public void setMonvol13(Double monvol13) {
        this.monvol13 = monvol13;
    }
 
    public Double getMonvol14() {
        return monvol14;
    }
 
    public void setMonvol14(Double monvol14) {
        this.monvol14 = monvol14;
    }
 
    public Double getMonvol15() {
        return monvol15;
    }
 
    public void setMonvol15(Double monvol15) {
        this.monvol15 = monvol15;
    }
 
    public Double getMonvol16() {
        return monvol16;
    }
 
    public void setMonvol16(Double monvol16) {
        this.monvol16 = monvol16;
    }
 
    public Double getMonvol17() {
        return monvol17;
    }
 
    public void setMonvol17(Double monvol17) {
        this.monvol17 = monvol17;
    }
 
    public Double getMonvol18() {
        return monvol18;
    }
 
    public void setMonvol18(Double monvol18) {
        this.monvol18 = monvol18;
    }
 
    public Double getMonvol19() {
        return monvol19;
    }
 
    public void setMonvol19(Double monvol19) {
        this.monvol19 = monvol19;
    }
 
    public Double getMonvol20() {
        return monvol20;
    }
 
    public void setMonvol20(Double monvol20) {
        this.monvol20 = monvol20;
    }
 
    public Double getMonvol21() {
        return monvol21;
    }
 
    public void setMonvol21(Double monvol21) {
        this.monvol21 = monvol21;
    }
 
    public Double getMonvol22() {
        return monvol22;
    }
 
    public void setMonvol22(Double monvol22) {
        this.monvol22 = monvol22;
    }
 
    public Double getMonvol23() {
        return monvol23;
    }
 
    public void setMonvol23(Double monvol23) {
        this.monvol23 = monvol23;
    }
 
    public Double getMonvol24() {
        return monvol24;
    }
 
    public void setMonvol24(Double monvol24) {
        this.monvol24 = monvol24;
    }
 
    public Double getMonvol25() {
        return monvol25;
    }
 
    public void setMonvol25(Double monvol25) {
        this.monvol25 = monvol25;
    }
 
    public Double getMonvol26() {
        return monvol26;
    }
 
    public void setMonvol26(Double monvol26) {
        this.monvol26 = monvol26;
    }
 
    public Double getMonvol27() {
        return monvol27;
    }
 
    public void setMonvol27(Double monvol27) {
        this.monvol27 = monvol27;
    }
 
    public Double getMonvol28() {
        return monvol28;
    }
 
    public void setMonvol28(Double monvol28) {
        this.monvol28 = monvol28;
    }
 
    public Double getMonvol29() {
        return monvol29;
    }
 
    public void setMonvol29(Double monvol29) {
        this.monvol29 = monvol29;
    }
 
    public Double getMonvol30() {
        return monvol30;
    }
 
    public void setMonvol30(Double monvol30) {
        this.monvol30 = monvol30;
    }
 
    public Double getMonvol31() {
        return monvol31;
    }
 
    public void setMonvol31(Double monvol31) {
        this.monvol31 = monvol31;
    }
 
    public Double getMonvol32() {
        return monvol32;
    }
 
    public void setMonvol32(Double monvol32) {
        this.monvol32 = monvol32;
    }
 
    public Double getMonvol33() {
        return monvol33;
    }
 
    public void setMonvol33(Double monvol33) {
        this.monvol33 = monvol33;
    }
 
    public Double getMonvol34() {
        return monvol34;
    }
 
    public void setMonvol34(Double monvol34) {
        this.monvol34 = monvol34;
    }
 
    public Double getMonvol35() {
        return monvol35;
    }
 
    public void setMonvol35(Double monvol35) {
        this.monvol35 = monvol35;
    }
 
    public Double getMonvol36() {
        return monvol36;
    }
 
    public void setMonvol36(Double monvol36) {
        this.monvol36 = monvol36;
    }
 
    public Double getMonvol37() {
        return monvol37;
    }
 
    public void setMonvol37(Double monvol37) {
        this.monvol37 = monvol37;
    }
 
    public Double getMonvol38() {
        return monvol38;
    }
 
    public void setMonvol38(Double monvol38) {
        this.monvol38 = monvol38;
    }
 
    public Double getMonvol39() {
        return monvol39;
    }
 
    public void setMonvol39(Double monvol39) {
        this.monvol39 = monvol39;
    }
 
    public Double getMonvol40() {
        return monvol40;
    }
 
    public void setMonvol40(Double monvol40) {
        this.monvol40 = monvol40;
    }
 
    public Double getMonvol41() {
        return monvol41;
    }
 
    public void setMonvol41(Double monvol41) {
        this.monvol41 = monvol41;
    }
 
    public Double getMonvol42() {
        return monvol42;
    }
 
    public void setMonvol42(Double monvol42) {
        this.monvol42 = monvol42;
    }
 
    public Double getMonvol43() {
        return monvol43;
    }
 
    public void setMonvol43(Double monvol43) {
        this.monvol43 = monvol43;
    }
 
    public Double getMonvol44() {
        return monvol44;
    }
 
    public void setMonvol44(Double monvol44) {
        this.monvol44 = monvol44;
    }
 
    public Double getMonvol45() {
        return monvol45;
    }
 
    public void setMonvol45(Double monvol45) {
        this.monvol45 = monvol45;
    }
 
    public Double getMonvol46() {
        return monvol46;
    }
 
    public void setMonvol46(Double monvol46) {
        this.monvol46 = monvol46;
    }
 
    public Double getMonvol47() {
        return monvol47;
    }
 
    public void setMonvol47(Double monvol47) {
        this.monvol47 = monvol47;
    }
 
    public Double getMonvol48() {
        return monvol48;
    }
 
    public void setMonvol48(Double monvol48) {
        this.monvol48 = monvol48;
    }
 
    public Double getMonvol49() {
        return monvol49;
    }
 
    public void setMonvol49(Double monvol49) {
        this.monvol49 = monvol49;
    }
 
    public Double getMonvol50() {
        return monvol50;
    }
 
    public void setMonvol50(Double monvol50) {
        this.monvol50 = monvol50;
    }
 
    public Double getMonvol51() {
        return monvol51;
    }
 
    public void setMonvol51(Double monvol51) {
        this.monvol51 = monvol51;
    }
 
    public Double getMonvol52() {
        return monvol52;
    }
 
    public void setMonvol52(Double monvol52) {
        this.monvol52 = monvol52;
    }
 
    public Double getMonvol53() {
        return monvol53;
    }
 
    public void setMonvol53(Double monvol53) {
        this.monvol53 = monvol53;
    }
 
    public Double getMonvol54() {
        return monvol54;
    }
 
    public void setMonvol54(Double monvol54) {
        this.monvol54 = monvol54;
    }
 
    public Double getMonvol55() {
        return monvol55;
    }
 
    public void setMonvol55(Double monvol55) {
        this.monvol55 = monvol55;
    }
 
    public Double getMonvol56() {
        return monvol56;
    }
 
    public void setMonvol56(Double monvol56) {
        this.monvol56 = monvol56;
    }
 
    public Double getMonvol57() {
        return monvol57;
    }
 
    public void setMonvol57(Double monvol57) {
        this.monvol57 = monvol57;
    }
 
    public Double getMonvol58() {
        return monvol58;
    }
 
    public void setMonvol58(Double monvol58) {
        this.monvol58 = monvol58;
    }
 
    public Double getMonvol59() {
        return monvol59;
    }
 
    public void setMonvol59(Double monvol59) {
        this.monvol59 = monvol59;
    }
 
    public Double getMonvol60() {
        return monvol60;
    }
 
    public void setMonvol60(Double monvol60) {
        this.monvol60 = monvol60;
    }
 
    public Double getMonvol61() {
        return monvol61;
    }
 
    public void setMonvol61(Double monvol61) {
        this.monvol61 = monvol61;
    }
 
    public Double getMonvol62() {
        return monvol62;
    }
 
    public void setMonvol62(Double monvol62) {
        this.monvol62 = monvol62;
    }
 
    public Double getMonvol63() {
        return monvol63;
    }
 
    public void setMonvol63(Double monvol63) {
        this.monvol63 = monvol63;
    }
 
    public Double getMonvol64() {
        return monvol64;
    }
 
    public void setMonvol64(Double monvol64) {
        this.monvol64 = monvol64;
    }
 
    public Double getMonvol65() {
        return monvol65;
    }
 
    public void setMonvol65(Double monvol65) {
        this.monvol65 = monvol65;
    }
 
    public Double getMonvol66() {
        return monvol66;
    }
 
    public void setMonvol66(Double monvol66) {
        this.monvol66 = monvol66;
    }
 
    public Double getMonvol67() {
        return monvol67;
    }
 
    public void setMonvol67(Double monvol67) {
        this.monvol67 = monvol67;
    }
 
    public Double getMonvol68() {
        return monvol68;
    }
 
    public void setMonvol68(Double monvol68) {
        this.monvol68 = monvol68;
    }
 
    public Double getMonvol69() {
        return monvol69;
    }
 
    public void setMonvol69(Double monvol69) {
        this.monvol69 = monvol69;
    }
 
    public Double getMonvol70() {
        return monvol70;
    }
 
    public void setMonvol70(Double monvol70) {
        this.monvol70 = monvol70;
    }
 
    public Double getMonvol71() {
        return monvol71;
    }
 
    public void setMonvol71(Double monvol71) {
        this.monvol71 = monvol71;
    }
 
    public Double getMonvol72() {
        return monvol72;
    }
 
    public void setMonvol72(Double monvol72) {
        this.monvol72 = monvol72;
    }
 
    public Double getMonvol73() {
        return monvol73;
    }
 
    public void setMonvol73(Double monvol73) {
        this.monvol73 = monvol73;
    }
 
    public Double getMonvol74() {
        return monvol74;
    }
 
    public void setMonvol74(Double monvol74) {
        this.monvol74 = monvol74;
    }
 
    public Double getMonvol75() {
        return monvol75;
    }
 
    public void setMonvol75(Double monvol75) {
        this.monvol75 = monvol75;
    }
 
    public Double getMonvol76() {
        return monvol76;
    }
 
    public void setMonvol76(Double monvol76) {
        this.monvol76 = monvol76;
    }
 
    public Double getMonvol77() {
        return monvol77;
    }
 
    public void setMonvol77(Double monvol77) {
        this.monvol77 = monvol77;
    }
 
    public Double getMonvol78() {
        return monvol78;
    }
 
    public void setMonvol78(Double monvol78) {
        this.monvol78 = monvol78;
    }
 
    public Double getMonvol79() {
        return monvol79;
    }
 
    public void setMonvol79(Double monvol79) {
        this.monvol79 = monvol79;
    }
 
    public Double getMonvol80() {
        return monvol80;
    }
 
    public void setMonvol80(Double monvol80) {
        this.monvol80 = monvol80;
    }
 
    public Double getMonvol81() {
        return monvol81;
    }
 
    public void setMonvol81(Double monvol81) {
        this.monvol81 = monvol81;
    }
 
    public Double getMonvol82() {
        return monvol82;
    }
 
    public void setMonvol82(Double monvol82) {
        this.monvol82 = monvol82;
    }
 
    public Double getMonvol83() {
        return monvol83;
    }
 
    public void setMonvol83(Double monvol83) {
        this.monvol83 = monvol83;
    }
 
    public Double getMonvol84() {
        return monvol84;
    }
 
    public void setMonvol84(Double monvol84) {
        this.monvol84 = monvol84;
    }
 
    @Override
    public boolean equals(Object that) {
        if (this == that) {
            return true;
        }
        if (that == null) {
            return false;
        }
        if (getClass() != that.getClass()) {
            return false;
        }
        TbBattsysParam other = (TbBattsysParam) that;
        return (this.getNum() == null ? other.getNum() == null : this.getNum().equals(other.getNum()))
            && (this.getBattgroupid() == null ? other.getBattgroupid() == null : this.getBattgroupid().equals(other.getBattgroupid()))
            && (this.getRecordtime() == null ? other.getRecordtime() == null : this.getRecordtime().equals(other.getRecordtime()))
            && (this.getGroupcurrent() == null ? other.getGroupcurrent() == null : this.getGroupcurrent().equals(other.getGroupcurrent()))
            && (this.getBattstate() == null ? other.getBattstate() == null : this.getBattstate().equals(other.getBattstate()))
            && (this.getMonvol1() == null ? other.getMonvol1() == null : this.getMonvol1().equals(other.getMonvol1()))
            && (this.getMonvol2() == null ? other.getMonvol2() == null : this.getMonvol2().equals(other.getMonvol2()))
            && (this.getMonvol3() == null ? other.getMonvol3() == null : this.getMonvol3().equals(other.getMonvol3()))
            && (this.getMonvol4() == null ? other.getMonvol4() == null : this.getMonvol4().equals(other.getMonvol4()))
            && (this.getMonvol5() == null ? other.getMonvol5() == null : this.getMonvol5().equals(other.getMonvol5()))
            && (this.getMonvol6() == null ? other.getMonvol6() == null : this.getMonvol6().equals(other.getMonvol6()))
            && (this.getMonvol7() == null ? other.getMonvol7() == null : this.getMonvol7().equals(other.getMonvol7()))
            && (this.getMonvol8() == null ? other.getMonvol8() == null : this.getMonvol8().equals(other.getMonvol8()))
            && (this.getMonvol9() == null ? other.getMonvol9() == null : this.getMonvol9().equals(other.getMonvol9()))
            && (this.getMonvol10() == null ? other.getMonvol10() == null : this.getMonvol10().equals(other.getMonvol10()))
            && (this.getMonvol11() == null ? other.getMonvol11() == null : this.getMonvol11().equals(other.getMonvol11()))
            && (this.getMonvol12() == null ? other.getMonvol12() == null : this.getMonvol12().equals(other.getMonvol12()))
            && (this.getMonvol13() == null ? other.getMonvol13() == null : this.getMonvol13().equals(other.getMonvol13()))
            && (this.getMonvol14() == null ? other.getMonvol14() == null : this.getMonvol14().equals(other.getMonvol14()))
            && (this.getMonvol15() == null ? other.getMonvol15() == null : this.getMonvol15().equals(other.getMonvol15()))
            && (this.getMonvol16() == null ? other.getMonvol16() == null : this.getMonvol16().equals(other.getMonvol16()))
            && (this.getMonvol17() == null ? other.getMonvol17() == null : this.getMonvol17().equals(other.getMonvol17()))
            && (this.getMonvol18() == null ? other.getMonvol18() == null : this.getMonvol18().equals(other.getMonvol18()))
            && (this.getMonvol19() == null ? other.getMonvol19() == null : this.getMonvol19().equals(other.getMonvol19()))
            && (this.getMonvol20() == null ? other.getMonvol20() == null : this.getMonvol20().equals(other.getMonvol20()))
            && (this.getMonvol21() == null ? other.getMonvol21() == null : this.getMonvol21().equals(other.getMonvol21()))
            && (this.getMonvol22() == null ? other.getMonvol22() == null : this.getMonvol22().equals(other.getMonvol22()))
            && (this.getMonvol23() == null ? other.getMonvol23() == null : this.getMonvol23().equals(other.getMonvol23()))
            && (this.getMonvol24() == null ? other.getMonvol24() == null : this.getMonvol24().equals(other.getMonvol24()))
            && (this.getMonvol25() == null ? other.getMonvol25() == null : this.getMonvol25().equals(other.getMonvol25()))
            && (this.getMonvol26() == null ? other.getMonvol26() == null : this.getMonvol26().equals(other.getMonvol26()))
            && (this.getMonvol27() == null ? other.getMonvol27() == null : this.getMonvol27().equals(other.getMonvol27()))
            && (this.getMonvol28() == null ? other.getMonvol28() == null : this.getMonvol28().equals(other.getMonvol28()))
            && (this.getMonvol29() == null ? other.getMonvol29() == null : this.getMonvol29().equals(other.getMonvol29()))
            && (this.getMonvol30() == null ? other.getMonvol30() == null : this.getMonvol30().equals(other.getMonvol30()))
            && (this.getMonvol31() == null ? other.getMonvol31() == null : this.getMonvol31().equals(other.getMonvol31()))
            && (this.getMonvol32() == null ? other.getMonvol32() == null : this.getMonvol32().equals(other.getMonvol32()))
            && (this.getMonvol33() == null ? other.getMonvol33() == null : this.getMonvol33().equals(other.getMonvol33()))
            && (this.getMonvol34() == null ? other.getMonvol34() == null : this.getMonvol34().equals(other.getMonvol34()))
            && (this.getMonvol35() == null ? other.getMonvol35() == null : this.getMonvol35().equals(other.getMonvol35()))
            && (this.getMonvol36() == null ? other.getMonvol36() == null : this.getMonvol36().equals(other.getMonvol36()))
            && (this.getMonvol37() == null ? other.getMonvol37() == null : this.getMonvol37().equals(other.getMonvol37()))
            && (this.getMonvol38() == null ? other.getMonvol38() == null : this.getMonvol38().equals(other.getMonvol38()))
            && (this.getMonvol39() == null ? other.getMonvol39() == null : this.getMonvol39().equals(other.getMonvol39()))
            && (this.getMonvol40() == null ? other.getMonvol40() == null : this.getMonvol40().equals(other.getMonvol40()))
            && (this.getMonvol41() == null ? other.getMonvol41() == null : this.getMonvol41().equals(other.getMonvol41()))
            && (this.getMonvol42() == null ? other.getMonvol42() == null : this.getMonvol42().equals(other.getMonvol42()))
            && (this.getMonvol43() == null ? other.getMonvol43() == null : this.getMonvol43().equals(other.getMonvol43()))
            && (this.getMonvol44() == null ? other.getMonvol44() == null : this.getMonvol44().equals(other.getMonvol44()))
            && (this.getMonvol45() == null ? other.getMonvol45() == null : this.getMonvol45().equals(other.getMonvol45()))
            && (this.getMonvol46() == null ? other.getMonvol46() == null : this.getMonvol46().equals(other.getMonvol46()))
            && (this.getMonvol47() == null ? other.getMonvol47() == null : this.getMonvol47().equals(other.getMonvol47()))
            && (this.getMonvol48() == null ? other.getMonvol48() == null : this.getMonvol48().equals(other.getMonvol48()))
            && (this.getMonvol49() == null ? other.getMonvol49() == null : this.getMonvol49().equals(other.getMonvol49()))
            && (this.getMonvol50() == null ? other.getMonvol50() == null : this.getMonvol50().equals(other.getMonvol50()))
            && (this.getMonvol51() == null ? other.getMonvol51() == null : this.getMonvol51().equals(other.getMonvol51()))
            && (this.getMonvol52() == null ? other.getMonvol52() == null : this.getMonvol52().equals(other.getMonvol52()))
            && (this.getMonvol53() == null ? other.getMonvol53() == null : this.getMonvol53().equals(other.getMonvol53()))
            && (this.getMonvol54() == null ? other.getMonvol54() == null : this.getMonvol54().equals(other.getMonvol54()))
            && (this.getMonvol55() == null ? other.getMonvol55() == null : this.getMonvol55().equals(other.getMonvol55()))
            && (this.getMonvol56() == null ? other.getMonvol56() == null : this.getMonvol56().equals(other.getMonvol56()))
            && (this.getMonvol57() == null ? other.getMonvol57() == null : this.getMonvol57().equals(other.getMonvol57()))
            && (this.getMonvol58() == null ? other.getMonvol58() == null : this.getMonvol58().equals(other.getMonvol58()))
            && (this.getMonvol59() == null ? other.getMonvol59() == null : this.getMonvol59().equals(other.getMonvol59()))
            && (this.getMonvol60() == null ? other.getMonvol60() == null : this.getMonvol60().equals(other.getMonvol60()))
            && (this.getMonvol61() == null ? other.getMonvol61() == null : this.getMonvol61().equals(other.getMonvol61()))
            && (this.getMonvol62() == null ? other.getMonvol62() == null : this.getMonvol62().equals(other.getMonvol62()))
            && (this.getMonvol63() == null ? other.getMonvol63() == null : this.getMonvol63().equals(other.getMonvol63()))
            && (this.getMonvol64() == null ? other.getMonvol64() == null : this.getMonvol64().equals(other.getMonvol64()))
            && (this.getMonvol65() == null ? other.getMonvol65() == null : this.getMonvol65().equals(other.getMonvol65()))
            && (this.getMonvol66() == null ? other.getMonvol66() == null : this.getMonvol66().equals(other.getMonvol66()))
            && (this.getMonvol67() == null ? other.getMonvol67() == null : this.getMonvol67().equals(other.getMonvol67()))
            && (this.getMonvol68() == null ? other.getMonvol68() == null : this.getMonvol68().equals(other.getMonvol68()))
            && (this.getMonvol69() == null ? other.getMonvol69() == null : this.getMonvol69().equals(other.getMonvol69()))
            && (this.getMonvol70() == null ? other.getMonvol70() == null : this.getMonvol70().equals(other.getMonvol70()))
            && (this.getMonvol71() == null ? other.getMonvol71() == null : this.getMonvol71().equals(other.getMonvol71()))
            && (this.getMonvol72() == null ? other.getMonvol72() == null : this.getMonvol72().equals(other.getMonvol72()))
            && (this.getMonvol73() == null ? other.getMonvol73() == null : this.getMonvol73().equals(other.getMonvol73()))
            && (this.getMonvol74() == null ? other.getMonvol74() == null : this.getMonvol74().equals(other.getMonvol74()))
            && (this.getMonvol75() == null ? other.getMonvol75() == null : this.getMonvol75().equals(other.getMonvol75()))
            && (this.getMonvol76() == null ? other.getMonvol76() == null : this.getMonvol76().equals(other.getMonvol76()))
            && (this.getMonvol77() == null ? other.getMonvol77() == null : this.getMonvol77().equals(other.getMonvol77()))
            && (this.getMonvol78() == null ? other.getMonvol78() == null : this.getMonvol78().equals(other.getMonvol78()))
            && (this.getMonvol79() == null ? other.getMonvol79() == null : this.getMonvol79().equals(other.getMonvol79()))
            && (this.getMonvol80() == null ? other.getMonvol80() == null : this.getMonvol80().equals(other.getMonvol80()))
            && (this.getMonvol81() == null ? other.getMonvol81() == null : this.getMonvol81().equals(other.getMonvol81()))
            && (this.getMonvol82() == null ? other.getMonvol82() == null : this.getMonvol82().equals(other.getMonvol82()))
            && (this.getMonvol83() == null ? other.getMonvol83() == null : this.getMonvol83().equals(other.getMonvol83()))
            && (this.getMonvol84() == null ? other.getMonvol84() == null : this.getMonvol84().equals(other.getMonvol84()));
    }
 
    @Override
    public int hashCode() {
        final int prime = 31;
        int result = 1;
        result = prime * result + ((getNum() == null) ? 0 : getNum().hashCode());
        result = prime * result + ((getBattgroupid() == null) ? 0 : getBattgroupid().hashCode());
        result = prime * result + ((getRecordtime() == null) ? 0 : getRecordtime().hashCode());
        result = prime * result + ((getGroupcurrent() == null) ? 0 : getGroupcurrent().hashCode());
        result = prime * result + ((getBattstate() == null) ? 0 : getBattstate().hashCode());
        result = prime * result + ((getMonvol1() == null) ? 0 : getMonvol1().hashCode());
        result = prime * result + ((getMonvol2() == null) ? 0 : getMonvol2().hashCode());
        result = prime * result + ((getMonvol3() == null) ? 0 : getMonvol3().hashCode());
        result = prime * result + ((getMonvol4() == null) ? 0 : getMonvol4().hashCode());
        result = prime * result + ((getMonvol5() == null) ? 0 : getMonvol5().hashCode());
        result = prime * result + ((getMonvol6() == null) ? 0 : getMonvol6().hashCode());
        result = prime * result + ((getMonvol7() == null) ? 0 : getMonvol7().hashCode());
        result = prime * result + ((getMonvol8() == null) ? 0 : getMonvol8().hashCode());
        result = prime * result + ((getMonvol9() == null) ? 0 : getMonvol9().hashCode());
        result = prime * result + ((getMonvol10() == null) ? 0 : getMonvol10().hashCode());
        result = prime * result + ((getMonvol11() == null) ? 0 : getMonvol11().hashCode());
        result = prime * result + ((getMonvol12() == null) ? 0 : getMonvol12().hashCode());
        result = prime * result + ((getMonvol13() == null) ? 0 : getMonvol13().hashCode());
        result = prime * result + ((getMonvol14() == null) ? 0 : getMonvol14().hashCode());
        result = prime * result + ((getMonvol15() == null) ? 0 : getMonvol15().hashCode());
        result = prime * result + ((getMonvol16() == null) ? 0 : getMonvol16().hashCode());
        result = prime * result + ((getMonvol17() == null) ? 0 : getMonvol17().hashCode());
        result = prime * result + ((getMonvol18() == null) ? 0 : getMonvol18().hashCode());
        result = prime * result + ((getMonvol19() == null) ? 0 : getMonvol19().hashCode());
        result = prime * result + ((getMonvol20() == null) ? 0 : getMonvol20().hashCode());
        result = prime * result + ((getMonvol21() == null) ? 0 : getMonvol21().hashCode());
        result = prime * result + ((getMonvol22() == null) ? 0 : getMonvol22().hashCode());
        result = prime * result + ((getMonvol23() == null) ? 0 : getMonvol23().hashCode());
        result = prime * result + ((getMonvol24() == null) ? 0 : getMonvol24().hashCode());
        result = prime * result + ((getMonvol25() == null) ? 0 : getMonvol25().hashCode());
        result = prime * result + ((getMonvol26() == null) ? 0 : getMonvol26().hashCode());
        result = prime * result + ((getMonvol27() == null) ? 0 : getMonvol27().hashCode());
        result = prime * result + ((getMonvol28() == null) ? 0 : getMonvol28().hashCode());
        result = prime * result + ((getMonvol29() == null) ? 0 : getMonvol29().hashCode());
        result = prime * result + ((getMonvol30() == null) ? 0 : getMonvol30().hashCode());
        result = prime * result + ((getMonvol31() == null) ? 0 : getMonvol31().hashCode());
        result = prime * result + ((getMonvol32() == null) ? 0 : getMonvol32().hashCode());
        result = prime * result + ((getMonvol33() == null) ? 0 : getMonvol33().hashCode());
        result = prime * result + ((getMonvol34() == null) ? 0 : getMonvol34().hashCode());
        result = prime * result + ((getMonvol35() == null) ? 0 : getMonvol35().hashCode());
        result = prime * result + ((getMonvol36() == null) ? 0 : getMonvol36().hashCode());
        result = prime * result + ((getMonvol37() == null) ? 0 : getMonvol37().hashCode());
        result = prime * result + ((getMonvol38() == null) ? 0 : getMonvol38().hashCode());
        result = prime * result + ((getMonvol39() == null) ? 0 : getMonvol39().hashCode());
        result = prime * result + ((getMonvol40() == null) ? 0 : getMonvol40().hashCode());
        result = prime * result + ((getMonvol41() == null) ? 0 : getMonvol41().hashCode());
        result = prime * result + ((getMonvol42() == null) ? 0 : getMonvol42().hashCode());
        result = prime * result + ((getMonvol43() == null) ? 0 : getMonvol43().hashCode());
        result = prime * result + ((getMonvol44() == null) ? 0 : getMonvol44().hashCode());
        result = prime * result + ((getMonvol45() == null) ? 0 : getMonvol45().hashCode());
        result = prime * result + ((getMonvol46() == null) ? 0 : getMonvol46().hashCode());
        result = prime * result + ((getMonvol47() == null) ? 0 : getMonvol47().hashCode());
        result = prime * result + ((getMonvol48() == null) ? 0 : getMonvol48().hashCode());
        result = prime * result + ((getMonvol49() == null) ? 0 : getMonvol49().hashCode());
        result = prime * result + ((getMonvol50() == null) ? 0 : getMonvol50().hashCode());
        result = prime * result + ((getMonvol51() == null) ? 0 : getMonvol51().hashCode());
        result = prime * result + ((getMonvol52() == null) ? 0 : getMonvol52().hashCode());
        result = prime * result + ((getMonvol53() == null) ? 0 : getMonvol53().hashCode());
        result = prime * result + ((getMonvol54() == null) ? 0 : getMonvol54().hashCode());
        result = prime * result + ((getMonvol55() == null) ? 0 : getMonvol55().hashCode());
        result = prime * result + ((getMonvol56() == null) ? 0 : getMonvol56().hashCode());
        result = prime * result + ((getMonvol57() == null) ? 0 : getMonvol57().hashCode());
        result = prime * result + ((getMonvol58() == null) ? 0 : getMonvol58().hashCode());
        result = prime * result + ((getMonvol59() == null) ? 0 : getMonvol59().hashCode());
        result = prime * result + ((getMonvol60() == null) ? 0 : getMonvol60().hashCode());
        result = prime * result + ((getMonvol61() == null) ? 0 : getMonvol61().hashCode());
        result = prime * result + ((getMonvol62() == null) ? 0 : getMonvol62().hashCode());
        result = prime * result + ((getMonvol63() == null) ? 0 : getMonvol63().hashCode());
        result = prime * result + ((getMonvol64() == null) ? 0 : getMonvol64().hashCode());
        result = prime * result + ((getMonvol65() == null) ? 0 : getMonvol65().hashCode());
        result = prime * result + ((getMonvol66() == null) ? 0 : getMonvol66().hashCode());
        result = prime * result + ((getMonvol67() == null) ? 0 : getMonvol67().hashCode());
        result = prime * result + ((getMonvol68() == null) ? 0 : getMonvol68().hashCode());
        result = prime * result + ((getMonvol69() == null) ? 0 : getMonvol69().hashCode());
        result = prime * result + ((getMonvol70() == null) ? 0 : getMonvol70().hashCode());
        result = prime * result + ((getMonvol71() == null) ? 0 : getMonvol71().hashCode());
        result = prime * result + ((getMonvol72() == null) ? 0 : getMonvol72().hashCode());
        result = prime * result + ((getMonvol73() == null) ? 0 : getMonvol73().hashCode());
        result = prime * result + ((getMonvol74() == null) ? 0 : getMonvol74().hashCode());
        result = prime * result + ((getMonvol75() == null) ? 0 : getMonvol75().hashCode());
        result = prime * result + ((getMonvol76() == null) ? 0 : getMonvol76().hashCode());
        result = prime * result + ((getMonvol77() == null) ? 0 : getMonvol77().hashCode());
        result = prime * result + ((getMonvol78() == null) ? 0 : getMonvol78().hashCode());
        result = prime * result + ((getMonvol79() == null) ? 0 : getMonvol79().hashCode());
        result = prime * result + ((getMonvol80() == null) ? 0 : getMonvol80().hashCode());
        result = prime * result + ((getMonvol81() == null) ? 0 : getMonvol81().hashCode());
        result = prime * result + ((getMonvol82() == null) ? 0 : getMonvol82().hashCode());
        result = prime * result + ((getMonvol83() == null) ? 0 : getMonvol83().hashCode());
        result = prime * result + ((getMonvol84() == null) ? 0 : getMonvol84().hashCode());
        return result;
    }
 
    @Override
    public String toString() {
        StringBuilder sb = new StringBuilder();
        sb.append(getClass().getSimpleName());
        sb.append(" [");
        sb.append("Hash = ").append(hashCode());
        sb.append(", num=").append(num);
        sb.append(", battgroupid=").append(battgroupid);
        sb.append(", recordtime=").append(recordtime);
        sb.append(", groupcurrent=").append(groupcurrent);
        sb.append(", battstate=").append(battstate);
        sb.append(", monvol1=").append(monvol1);
        sb.append(", monvol2=").append(monvol2);
        sb.append(", monvol3=").append(monvol3);
        sb.append(", monvol4=").append(monvol4);
        sb.append(", monvol5=").append(monvol5);
        sb.append(", monvol6=").append(monvol6);
        sb.append(", monvol7=").append(monvol7);
        sb.append(", monvol8=").append(monvol8);
        sb.append(", monvol9=").append(monvol9);
        sb.append(", monvol10=").append(monvol10);
        sb.append(", monvol11=").append(monvol11);
        sb.append(", monvol12=").append(monvol12);
        sb.append(", monvol13=").append(monvol13);
        sb.append(", monvol14=").append(monvol14);
        sb.append(", monvol15=").append(monvol15);
        sb.append(", monvol16=").append(monvol16);
        sb.append(", monvol17=").append(monvol17);
        sb.append(", monvol18=").append(monvol18);
        sb.append(", monvol19=").append(monvol19);
        sb.append(", monvol20=").append(monvol20);
        sb.append(", monvol21=").append(monvol21);
        sb.append(", monvol22=").append(monvol22);
        sb.append(", monvol23=").append(monvol23);
        sb.append(", monvol24=").append(monvol24);
        sb.append(", monvol25=").append(monvol25);
        sb.append(", monvol26=").append(monvol26);
        sb.append(", monvol27=").append(monvol27);
        sb.append(", monvol28=").append(monvol28);
        sb.append(", monvol29=").append(monvol29);
        sb.append(", monvol30=").append(monvol30);
        sb.append(", monvol31=").append(monvol31);
        sb.append(", monvol32=").append(monvol32);
        sb.append(", monvol33=").append(monvol33);
        sb.append(", monvol34=").append(monvol34);
        sb.append(", monvol35=").append(monvol35);
        sb.append(", monvol36=").append(monvol36);
        sb.append(", monvol37=").append(monvol37);
        sb.append(", monvol38=").append(monvol38);
        sb.append(", monvol39=").append(monvol39);
        sb.append(", monvol40=").append(monvol40);
        sb.append(", monvol41=").append(monvol41);
        sb.append(", monvol42=").append(monvol42);
        sb.append(", monvol43=").append(monvol43);
        sb.append(", monvol44=").append(monvol44);
        sb.append(", monvol45=").append(monvol45);
        sb.append(", monvol46=").append(monvol46);
        sb.append(", monvol47=").append(monvol47);
        sb.append(", monvol48=").append(monvol48);
        sb.append(", monvol49=").append(monvol49);
        sb.append(", monvol50=").append(monvol50);
        sb.append(", monvol51=").append(monvol51);
        sb.append(", monvol52=").append(monvol52);
        sb.append(", monvol53=").append(monvol53);
        sb.append(", monvol54=").append(monvol54);
        sb.append(", monvol55=").append(monvol55);
        sb.append(", monvol56=").append(monvol56);
        sb.append(", monvol57=").append(monvol57);
        sb.append(", monvol58=").append(monvol58);
        sb.append(", monvol59=").append(monvol59);
        sb.append(", monvol60=").append(monvol60);
        sb.append(", monvol61=").append(monvol61);
        sb.append(", monvol62=").append(monvol62);
        sb.append(", monvol63=").append(monvol63);
        sb.append(", monvol64=").append(monvol64);
        sb.append(", monvol65=").append(monvol65);
        sb.append(", monvol66=").append(monvol66);
        sb.append(", monvol67=").append(monvol67);
        sb.append(", monvol68=").append(monvol68);
        sb.append(", monvol69=").append(monvol69);
        sb.append(", monvol70=").append(monvol70);
        sb.append(", monvol71=").append(monvol71);
        sb.append(", monvol72=").append(monvol72);
        sb.append(", monvol73=").append(monvol73);
        sb.append(", monvol74=").append(monvol74);
        sb.append(", monvol75=").append(monvol75);
        sb.append(", monvol76=").append(monvol76);
        sb.append(", monvol77=").append(monvol77);
        sb.append(", monvol78=").append(monvol78);
        sb.append(", monvol79=").append(monvol79);
        sb.append(", monvol80=").append(monvol80);
        sb.append(", monvol81=").append(monvol81);
        sb.append(", monvol82=").append(monvol82);
        sb.append(", monvol83=").append(monvol83);
        sb.append(", monvol84=").append(monvol84);
        sb.append(", serialVersionUID=").append(serialVersionUID);
        sb.append("]");
        return sb.toString();
    }
}