1
81041
2019-06-20 ab3c4acf83f54f8449ca8664c4a2bb79bd30f297
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
package com.fgkj.dto;
 
import java.io.Serializable;
import java.util.Date;
 
public class BadBatt_mon implements Serializable{
    private Integer num;
    private Integer BattGroupid;
    private Integer mon_num;
    private Integer record_num;
    private  Date test_starttime;
    private Float group_vol;
    private Float test_curr;
    private Float mon_vol;
    private Float real_cap;
    private Float stdcap;
    private String note;
    
    private int number;  //机房对应落后单体数目(首页查询用到)
    private int number1;
    private String stationName1;
    private String stationName2;
    private String stationName5;
    public BadBatt_mon() {
        super();
    }
    public Integer getNum() {
        return num;
    }
    public void setNum(Integer num) {
        this.num = num;
    }
    public Integer getBattGroupid() {
        return BattGroupid;
    }
    public void setBattGroupid(Integer battGroupid) {
        BattGroupid = battGroupid;
    }
    public Integer getMon_num() {
        return mon_num;
    }
    public void setMon_num(Integer mon_num) {
        this.mon_num = mon_num;
    }
    public Integer getRecord_num() {
        return record_num;
    }
    public void setRecord_num(Integer record_num) {
        this.record_num = record_num;
    }
    
    public Date getTest_starttime() {
        return test_starttime;
    }
    public void setTest_starttime(Date test_starttime) {
        this.test_starttime = test_starttime;
    }
    public Float getGroup_vol() {
        return group_vol;
    }
    public void setGroup_vol(Float group_vol) {
        this.group_vol = group_vol;
    }
    public Float getTest_curr() {
        return test_curr;
    }
    public void setTest_curr(Float test_curr) {
        this.test_curr = test_curr;
    }
    public Float getMon_vol() {
        return mon_vol;
    }
    public void setMon_vol(Float mon_vol) {
        this.mon_vol = mon_vol;
    }
    public Float getReal_cap() {
        return real_cap;
    }
    public void setReal_cap(Float real_cap) {
        this.real_cap = real_cap;
    }
    public Float getStdcap() {
        return stdcap;
    }
    public void setStdcap(Float stdcap) {
        this.stdcap = stdcap;
    }
    
    public String getNote() {
        return note;
    }
    public void setNote(String note) {
        this.note = note;
    }
    public int getNumber() {
        return number;
    }
    public void setNumber(int number) {
        this.number = number;
    }
    public int getNumber1() {
        return number1;
    }
    public void setNumber1(int number1) {
        this.number1 = number1;
    }
    public String getStationName1() {
        return stationName1;
    }
    public void setStationName1(String stationName1) {
        this.stationName1 = stationName1;
    }
    public String getStationName2() {
        return stationName2;
    }
    public void setStationName2(String stationName2) {
        this.stationName2 = stationName2;
    }
    public String getStationName5() {
        return stationName5;
    }
    public void setStationName5(String stationName5) {
        this.stationName5 = stationName5;
    }
    @Override
    public String toString() {
        return "BadBatt_mon [num=" + num + ", BattGroupid=" + BattGroupid
                + ", mon_num=" + mon_num + ", record_num=" + record_num
                + ", test_starttime=" + test_starttime + ", group_vol="
                + group_vol + ", test_curr=" + test_curr + ", mon_vol="
                + mon_vol + ", real_cap=" + real_cap + ", stdcap=" + stdcap
                + ", note=" + note + ", number=" + number + ", number1="
                + number1 + ", stationName1=" + stationName1
                + ", stationName2=" + stationName2 + ", stationName5="
                + stationName5 + "]";
    }
    
    
    
}