whyclj
2019-10-29 1c0469e45346d464e0c5672ee68f9ecd4fb6be7c
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
package com.fgkj.dto;
 
import java.io.Serializable;
import java.text.ParseException;
import java.text.SimpleDateFormat;
import java.util.Date;
 
import com.fgkj.dto.ram.Fbs9100_setparam;
 
/**
 * @author 星伟
 *
 */
public class BattInf implements Serializable{
    private Integer num;
    private String StationId;
    private String StationName;
    private String StationName1;
    private String StationName2;
    private String StationName3;
    private String StationName4;
    private String StationName5;
    private String StationName6;
    private String StationName7;
    private String StationName8;
    private String StationName9;
    private String StationIp;
    private Integer FBSDeviceId;
    private String  FbsDeviceIp;
    private String  FbsDeviceIp_YM;
    private String  FbsDeviceIp_WG;
    
    private String  FbsDeviceIp_old;
    private String  FbsDeviceIp_YM_old;
    private String  FbsDeviceIp_WG_old;
    
    private String  FBSDeviceName;
    private Integer GroupIndexInFBSDevice;
    private String  BattModel;
    private Integer BattGroupId;
    private Integer BattGroupNum;
    private String BattGroupName;
    private String BattGroupName1;
    private String BattGroupName2;
    private String BattGroupName3;
    private String BattGroupName4;
    private String BattGroupName5;
    private String BattGroupName6;
    private Float  FloatVolLevel;
    private Float  OfflineVolLevel;
    private Float  BattFloatCurrent;
    private String DeviceId;
    private String DeviceName;
    private Integer MonCount;
    private Float  MonCapStd;   //标存容量
    private Float  MonResStd;
    private Float MonSerStd;
    private Float  MonTmpStd;
    private Float  MonVolStd;    //标存电压
    private Float  MonVolLowToAvg;
    private Integer MonNum;
    private String BattProducer;
    private Date   BattProductDate;
    private Date   BattProductDate1;//生产日期段
    private Date   BattInUseDate;
    private Date   BattInUseDate1;      //使用日期段
    private Integer BattGuarantDayCount;//保修年限
    private String SignalId;
    private Integer CInterFaceId;
    private Float Load_curr;// 负载电流
    private Float DisCurrMax;//最大核容电流
    private String SignalName;
    private Integer StartNum;             
    private Integer Size;                 
    private String station_phone;   
    
    private String install_user;     //安装人
    
    private Integer Station_install;    //机房设备是否安装
    private String StationId_ex;     
    
    private Fbs9100_setparam fparam;
    //紫晶专属
    private Float  Vol_grade;//电压等级(kV)        
    private String Manufacturers;//身产厂家        
    private String Assetequipment;//是否资产级设备        
    private String Deviceclasspath;//设备分类全路径        
    private String Deviceoperationdepartment;//设备运维部门        
    private String PropertyRightUnit;//产权单位        
    private String PropertyAttribute;//产权属性        
    private String FactoryNumber;//出厂编号        
    private String OperationTeam;//运维(保管)班组        
    private String DeviceIdentityCode;//设备身份编码        
    private String ProjectType;//项目类型        
    private String BatteryApplicationType;//蓄电池应用类型        
    private Float  SingleRatedVoltage;//单电压额定电压        
    private String RemoteMonitor;//是否实现远程监控    
    private String BatttIndependentPlaced;//是否独立蓄电池室放置    
    private Float JunChargeVoltageValue;//均充电压设定值        
    
    public BattInf() {
        super();
        // TODO Auto-generated constructor stub
    }
    
    public Integer getNum() {
        return num;
    }
 
    public void setNum(Integer num) {
        this.num = num;
    }
 
    
    public String getStationId() {
        return StationId;
    }
 
    public void setStationId(String stationId) {
        StationId = stationId;
    }
 
    public String getStationName() {
        return StationName;
    }
    public void setStationName(String stationName) {
        StationName = stationName;
    }
    public String getStationName1() {
        return StationName1;
    }
    public void setStationName1(String stationName1) {
        StationName1 = stationName1;
    }
    public String getStationName2() {
        return StationName2;
    }
    public void setStationName2(String stationName2) {
        StationName2 = stationName2;
    }
    public String getStationName3() {
        return StationName3;
    }
    public void setStationName3(String stationName3) {
        StationName3 = stationName3;
    }
    public String getStationName4() {
        return StationName4;
    }
    public void setStationName4(String stationName4) {
        StationName4 = stationName4;
    }
    public String getStationName5() {
        return StationName5;
    }
    public void setStationName5(String stationName5) {
        StationName5 = stationName5;
    }
    public String getStationName6() {
        return StationName6;
    }
    public void setStationName6(String stationName6) {
        StationName6 = stationName6;
    }
    public String getStationName7() {
        return StationName7;
    }
    public void setStationName7(String stationName7) {
        StationName7 = stationName7;
    }
    public String getStationName8() {
        return StationName8;
    }
    public void setStationName8(String stationName8) {
        StationName8 = stationName8;
    }
    public String getStationName9() {
        return StationName9;
    }
    public void setStationName9(String stationName9) {
        StationName9 = stationName9;
    }
    public String getStationIp() {
        return StationIp;
    }
    public void setStationIp(String stationIp) {
        StationIp = stationIp;
    }
    public Integer getFBSDeviceId() {
        return FBSDeviceId;
    }
    public void setFBSDeviceId(Integer fBSDeviceId) {
        FBSDeviceId = fBSDeviceId;
    }
    public String getFbsDeviceIp() {
        return FbsDeviceIp;
    }
    public void setFbsDeviceIp(String fbsDeviceIp) {
        FbsDeviceIp = fbsDeviceIp;
    }
    
    public String getFbsDeviceIp_YM() {
        return FbsDeviceIp_YM;
    }
 
    public void setFbsDeviceIp_YM(String fbsDeviceIp_YM) {
        FbsDeviceIp_YM = fbsDeviceIp_YM;
    }
 
    public String getFbsDeviceIp_WG() {
        return FbsDeviceIp_WG;
    }
 
    public void setFbsDeviceIp_WG(String fbsDeviceIp_WG) {
        FbsDeviceIp_WG = fbsDeviceIp_WG;
    }
 
    
    public String getFbsDeviceIp_old() {
        return FbsDeviceIp_old;
    }
 
    public void setFbsDeviceIp_old(String fbsDeviceIp_old) {
        FbsDeviceIp_old = fbsDeviceIp_old;
    }
 
    public String getFbsDeviceIp_YM_old() {
        return FbsDeviceIp_YM_old;
    }
 
    public void setFbsDeviceIp_YM_old(String fbsDeviceIp_YM_old) {
        FbsDeviceIp_YM_old = fbsDeviceIp_YM_old;
    }
 
    public String getFbsDeviceIp_WG_old() {
        return FbsDeviceIp_WG_old;
    }
 
    public void setFbsDeviceIp_WG_old(String fbsDeviceIp_WG_old) {
        FbsDeviceIp_WG_old = fbsDeviceIp_WG_old;
    }
 
    public String getFBSDeviceName() {
        return FBSDeviceName;
    }
    public void setFBSDeviceName(String fBSDeviceName) {
        FBSDeviceName = fBSDeviceName;
    }
    public Integer getGroupIndexInFBSDevice() {
        return GroupIndexInFBSDevice;
    }
    public void setGroupIndexInFBSDevice(Integer groupIndexInFBSDevice) {
        GroupIndexInFBSDevice = groupIndexInFBSDevice;
    }
    public String getBattModel() {
        return BattModel;
    }
    public void setBattModel(String battModel) {
        BattModel = battModel;
    }
    public Integer getBattGroupId() {
        return BattGroupId;
    }
    public void setBattGroupId(Integer battGroupId) {
        BattGroupId = battGroupId;
    }
    public Integer getBattGroupNum() {
        return BattGroupNum;
    }
    public void setBattGroupNum(Integer battGroupNum) {
        BattGroupNum = battGroupNum;
    }
    public String getBattGroupName() {
        return BattGroupName;
    }
    public void setBattGroupName(String battGroupName) {
        BattGroupName = battGroupName;
    }
    public String getBattGroupName1() {
        return BattGroupName1;
    }
    public void setBattGroupName1(String battGroupName1) {
        BattGroupName1 = battGroupName1;
    }
    public String getBattGroupName2() {
        return BattGroupName2;
    }
    public void setBattGroupName2(String battGroupName2) {
        BattGroupName2 = battGroupName2;
    }
    public String getBattGroupName3() {
        return BattGroupName3;
    }
    public void setBattGroupName3(String battGroupName3) {
        BattGroupName3 = battGroupName3;
    }
    public String getBattGroupName4() {
        return BattGroupName4;
    }
    public void setBattGroupName4(String battGroupName4) {
        BattGroupName4 = battGroupName4;
    }
    public String getBattGroupName5() {
        return BattGroupName5;
    }
    public void setBattGroupName5(String battGroupName5) {
        BattGroupName5 = battGroupName5;
    }
    public String getBattGroupName6() {
        return BattGroupName6;
    }
    public void setBattGroupName6(String battGroupName6) {
        BattGroupName6 = battGroupName6;
    }
    public Float getFloatVolLevel() {
        return FloatVolLevel;
    }
    public void setFloatVolLevel(Float floatVolLevel) {
        FloatVolLevel = floatVolLevel;
    }
    public Float getOfflineVolLevel() {
        return OfflineVolLevel;
    }
    public void setOfflineVolLevel(Float offlineVolLevel) {
        OfflineVolLevel = offlineVolLevel;
    }
    public Float getBattFloatCurrent() {
        return BattFloatCurrent;
    }
    public void setBattFloatCurrent(Float battFloatCurrent) {
        BattFloatCurrent = battFloatCurrent;
    }
    public String getDeviceId() {
        return DeviceId;
    }
    public void setDeviceId(String deviceId) {
        DeviceId = deviceId;
    }
    public String getDeviceName() {
        return DeviceName;
    }
    public void setDeviceName(String deviceName) {
        DeviceName = deviceName;
    }
    public Integer getMonCount() {
        return MonCount;
    }
    public void setMonCount(Integer monCount) {
        MonCount = monCount;
    }
    public Float getMonCapStd() {
        return MonCapStd;
    }
    public void setMonCapStd(Float monCapStd) {
        MonCapStd = monCapStd;
    }
    public Float getMonResStd() {
        return MonResStd;
    }
    public void setMonResStd(Float monResStd) {
        MonResStd = monResStd;
    }
    public Float getMonSerStd() {
        return MonSerStd;
    }
    public void setMonSerStd(Float monSerStd) {
        MonSerStd = monSerStd;
    }
    public Float getMonTmpStd() {
        return MonTmpStd;
    }
    public void setMonTmpStd(Float monTmpStd) {
        MonTmpStd = monTmpStd;
    }
    public Float getMonVolStd() {
        return MonVolStd;
    }
    public void setMonVolStd(Float monVolStd) {
        MonVolStd = monVolStd;
    }
    public Float getMonVolLowToAvg() {
        return MonVolLowToAvg;
    }
    public void setMonVolLowToAvg(Float monVolLowToAvg) {
        MonVolLowToAvg = monVolLowToAvg;
    }
    public Integer getMonNum() {
        return MonNum;
    }
    public void setMonNum(Integer monNum) {
        MonNum = monNum;
    }
    public String getBattProducer() {
        return BattProducer;
    }
    public void setBattProducer(String battProducer) {
        BattProducer = battProducer;
    }
    public Date getBattProductDate() {
        return BattProductDate;
    }
    public void setBattProductDate(Date battProductDate) {
        BattProductDate = battProductDate;
    }
    
    public void setBattProductDate(String battProductDate) {
        SimpleDateFormat sdf=new SimpleDateFormat("yyyy-MM-dd");
        try {
            BattProductDate=sdf.parse(battProductDate);
        } catch (ParseException e) {
            e.printStackTrace();
        }
        
    }
    public Date getBattProductDate1() {
        return BattProductDate1;
    }
 
    public void setBattProductDate1(Date battProductDate1) {
        
        BattProductDate1 = battProductDate1;
    }
    
    public void setBattProductDate1(String battProductDate1) {
        SimpleDateFormat sdf=new SimpleDateFormat("yyyy-MM-dd");
        try {
            BattProductDate1=sdf.parse(battProductDate1);
        } catch (ParseException e) {
            e.printStackTrace();
        }
    }
 
    public Date getBattInUseDate1() {
        return BattInUseDate1;
    }
 
    public void setBattInUseDate1(Date battInUseDate1) {
        BattInUseDate1 = battInUseDate1;
    }
    
    public void setBattInUseDate1(String battInUseDate1) {
        SimpleDateFormat sdf=new SimpleDateFormat("yyyy-MM-dd");
        try {
            BattInUseDate1=sdf.parse(battInUseDate1);
        } catch (ParseException e) {
            e.printStackTrace();
        }
    }
 
    public Date getBattInUseDate() {
        return BattInUseDate;
    }
    public void setBattInUseDate(Date battInUseDate) {
        BattInUseDate = battInUseDate;
    }
    
    public void setBattInUseDate(String battInUseDate) {
        SimpleDateFormat sdf=new SimpleDateFormat("yyyy-MM-dd");
        try {
            BattInUseDate=sdf.parse(battInUseDate);
        } catch (ParseException e) {
            e.printStackTrace();
        }
    }
    
    public String getSignalId() {
        return SignalId;
    }
    public void setSignalId(String signalId) {
        SignalId = signalId;
    }
    public Integer getCInterFaceId() {
        return CInterFaceId;
    }
    public void setCInterFaceId(Integer cInterFaceId) {
        CInterFaceId = cInterFaceId;
    }
    public String getSignalName() {
        return SignalName;
    }
    public void setSignalName(String signalName) {
        SignalName = signalName;
    }
    
    public Float getLoad_curr() {
        return Load_curr;
    }
 
    public void setLoad_curr(Float load_curr) {
        Load_curr = load_curr;
    }
 
    public Integer getStartNum() {
        return StartNum;
    }
 
    public void setStartNum(Integer startNum) {
        StartNum = startNum;
    }
 
    public Integer getSize() {
        return Size;
    }
 
    public void setSize(Integer size) {
        Size = size;
    }
    
 
    public Integer getBattGuarantDayCount() {
        return BattGuarantDayCount;
    }
 
    public void setBattGuarantDayCount(Integer battGuarantDayCount) {
        BattGuarantDayCount = battGuarantDayCount;
    }
 
    public Float getDisCurrMax() {
        return DisCurrMax;
    }
 
    public void setDisCurrMax(Float disCurrMax) {
        DisCurrMax = disCurrMax;
    }
 
    public String getStation_phone() {
        return station_phone;
    }
 
    public void setStation_phone(String station_phone) {
        this.station_phone = station_phone;
    }
 
    
    public String getInstall_user() {
        return install_user;
    }
 
    public void setInstall_user(String install_user) {
        this.install_user = install_user;
    }
 
    public Integer getStation_install() {
        return Station_install;
    }
 
    public void setStation_install(Integer station_install) {
        Station_install = station_install;
    }
 
    public String getStationId_ex() {
        return StationId_ex;
    }
 
    public void setStationId_ex(String stationId_ex) {
        StationId_ex = stationId_ex;
    }
 
    public Float getVol_grade() {
        return Vol_grade;
    }
 
    public void setVol_grade(Float vol_grade) {
        Vol_grade = vol_grade;
    }
 
    public String getManufacturers() {
        return Manufacturers;
    }
 
    public void setManufacturers(String manufacturers) {
        Manufacturers = manufacturers;
    }
 
    public String getAssetequipment() {
        return Assetequipment;
    }
 
    public void setAssetequipment(String assetequipment) {
        Assetequipment = assetequipment;
    }
 
    public String getDeviceclasspath() {
        return Deviceclasspath;
    }
 
    public void setDeviceclasspath(String deviceclasspath) {
        Deviceclasspath = deviceclasspath;
    }
 
    public String getDeviceoperationdepartment() {
        return Deviceoperationdepartment;
    }
 
    public void setDeviceoperationdepartment(String deviceoperationdepartment) {
        Deviceoperationdepartment = deviceoperationdepartment;
    }
 
    public String getPropertyRightUnit() {
        return PropertyRightUnit;
    }
 
    public void setPropertyRightUnit(String propertyRightUnit) {
        PropertyRightUnit = propertyRightUnit;
    }
 
    public String getPropertyAttribute() {
        return PropertyAttribute;
    }
 
    public void setPropertyAttribute(String propertyAttribute) {
        PropertyAttribute = propertyAttribute;
    }
 
    public String getFactoryNumber() {
        return FactoryNumber;
    }
 
    public void setFactoryNumber(String factoryNumber) {
        FactoryNumber = factoryNumber;
    }
 
    public String getOperationTeam() {
        return OperationTeam;
    }
 
    public void setOperationTeam(String operationTeam) {
        OperationTeam = operationTeam;
    }
 
    public String getDeviceIdentityCode() {
        return DeviceIdentityCode;
    }
 
    public void setDeviceIdentityCode(String deviceIdentityCode) {
        DeviceIdentityCode = deviceIdentityCode;
    }
 
    public String getProjectType() {
        return ProjectType;
    }
 
    public void setProjectType(String projectType) {
        ProjectType = projectType;
    }
 
    public String getBatteryApplicationType() {
        return BatteryApplicationType;
    }
 
    public void setBatteryApplicationType(String batteryApplicationType) {
        BatteryApplicationType = batteryApplicationType;
    }
 
    public Float getSingleRatedVoltage() {
        return SingleRatedVoltage;
    }
 
    public void setSingleRatedVoltage(Float singleRatedVoltage) {
        SingleRatedVoltage = singleRatedVoltage;
    }
 
    public String getRemoteMonitor() {
        return RemoteMonitor;
    }
 
    public void setRemoteMonitor(String remoteMonitor) {
        RemoteMonitor = remoteMonitor;
    }
 
    public String getBatttIndependentPlaced() {
        return BatttIndependentPlaced;
    }
 
    public void setBatttIndependentPlaced(String batttIndependentPlaced) {
        BatttIndependentPlaced = batttIndependentPlaced;
    }
 
    public Float getJunChargeVoltageValue() {
        return JunChargeVoltageValue;
    }
 
    public void setJunChargeVoltageValue(Float junChargeVoltageValue) {
        JunChargeVoltageValue = junChargeVoltageValue;
    }
 
    public Fbs9100_setparam getFparam() {
        return fparam;
    }
 
    public void setFparam(Fbs9100_setparam fparam) {
        this.fparam = fparam;
    }
 
    @Override
    public String toString() {
        return "BattInf [num=" + num + ", StationId=" + StationId
                + ", StationName=" + StationName + ", StationName1="
                + StationName1 + ", StationName2=" + StationName2
                + ", StationName3=" + StationName3 + ", StationName4="
                + StationName4 + ", StationName5=" + StationName5
                + ", StationName6=" + StationName6 + ", StationName7="
                + StationName7 + ", StationName8=" + StationName8
                + ", StationName9=" + StationName9 + ", StationIp=" + StationIp
                + ", FBSDeviceId=" + FBSDeviceId + ", FbsDeviceIp="
                + FbsDeviceIp + ", FbsDeviceIp_YM=" + FbsDeviceIp_YM
                + ", FbsDeviceIp_WG=" + FbsDeviceIp_WG + ", FbsDeviceIp_old="
                + FbsDeviceIp_old + ", FbsDeviceIp_YM_old="
                + FbsDeviceIp_YM_old + ", FbsDeviceIp_WG_old="
                + FbsDeviceIp_WG_old + ", FBSDeviceName=" + FBSDeviceName
                + ", GroupIndexInFBSDevice=" + GroupIndexInFBSDevice
                + ", BattModel=" + BattModel + ", BattGroupId=" + BattGroupId
                + ", BattGroupNum=" + BattGroupNum + ", BattGroupName="
                + BattGroupName + ", BattGroupName1=" + BattGroupName1
                + ", BattGroupName2=" + BattGroupName2 + ", BattGroupName3="
                + BattGroupName3 + ", BattGroupName4=" + BattGroupName4
                + ", BattGroupName5=" + BattGroupName5 + ", BattGroupName6="
                + BattGroupName6 + ", FloatVolLevel=" + FloatVolLevel
                + ", OfflineVolLevel=" + OfflineVolLevel
                + ", BattFloatCurrent=" + BattFloatCurrent + ", DeviceId="
                + DeviceId + ", DeviceName=" + DeviceName + ", MonCount="
                + MonCount + ", MonCapStd=" + MonCapStd + ", MonResStd="
                + MonResStd + ", MonSerStd=" + MonSerStd + ", MonTmpStd="
                + MonTmpStd + ", MonVolStd=" + MonVolStd + ", MonVolLowToAvg="
                + MonVolLowToAvg + ", MonNum=" + MonNum + ", BattProducer="
                + BattProducer + ", BattProductDate=" + BattProductDate
                + ", BattProductDate1=" + BattProductDate1 + ", BattInUseDate="
                + BattInUseDate + ", BattInUseDate1=" + BattInUseDate1
                + ", BattGuarantDayCount=" + BattGuarantDayCount
                + ", SignalId=" + SignalId + ", CInterFaceId=" + CInterFaceId
                + ", Load_curr=" + Load_curr + ", DisCurrMax=" + DisCurrMax
                + ", SignalName=" + SignalName + ", StartNum=" + StartNum
                + ", Size=" + Size + ", station_phone=" + station_phone
                + ", install_user=" + install_user + ", Station_install="
                + Station_install + ", StationId_ex=" + StationId_ex
                + ", fparam=" + fparam + ", Vol_grade=" + Vol_grade
                + ", Manufacturers=" + Manufacturers + ", Assetequipment="
                + Assetequipment + ", Deviceclasspath=" + Deviceclasspath
                + ", Deviceoperationdepartment=" + Deviceoperationdepartment
                + ", PropertyRightUnit=" + PropertyRightUnit
                + ", PropertyAttribute=" + PropertyAttribute
                + ", FactoryNumber=" + FactoryNumber + ", OperationTeam="
                + OperationTeam + ", DeviceIdentityCode=" + DeviceIdentityCode
                + ", ProjectType=" + ProjectType + ", BatteryApplicationType="
                + BatteryApplicationType + ", SingleRatedVoltage="
                + SingleRatedVoltage + ", RemoteMonitor=" + RemoteMonitor
                + ", BatttIndependentPlaced=" + BatttIndependentPlaced
                + ", JunChargeVoltageValue=" + JunChargeVoltageValue + "]";
    }
 
    
 
    
 
 
    
    
 
    
    
}