whyclj
2020-07-22 a5729100cb1eaa3584b3a194e46e1b8b52b3ed1a
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
package com.fgkj.dto;
 
import java.io.Serializable;
 
public class Batt_endurance implements Serializable{
    private int num;
    private int deviceId;
    private String stationid;
    private float real_cap;
    private float moncapstd;   //两组容量和
    private float real_curr;
    private float endurance_theory_timelong;//理论
    private float endurance_actual_timelong;//实际
    private float endurance_actual_timelong_max;//实际最大
    private float endurance_actual_timelong_min;//实际最小
    private int is_out_stand;
    private float real_cap_group1;//电池组的实际容量
    private float real_cap_group2;
    private float real_cap_group3;
    private float real_cap_group4;
    private float real_cap_min;//机房实际容量最大值和最小值(首页大查询使用到)
    private float real_cap_max;
    
    private int groupcount;
    private String batts_moncapstd;//机房电池组的标称容量
    private String batts_teststarttime;//机房电池组的和容开始时间
    private String note;
    private String stationName;
    private String stationName1;//省级
    private String stationName2;//市级
    private String stationName5;//区县
    private int monvolstd;
    private Page page;//分页
    public int getNum() {
        return num;
    }
    public void setNum(int num) {
        this.num = num;
    }
    public int getDeviceId() {
        return deviceId;
    }
    public void setDeviceId(int deviceId) {
        this.deviceId = deviceId;
    }
    public String getStationid() {
        return stationid;
    }
    public void setStationid(String stationid) {
        this.stationid = stationid;
    }
    public float getReal_cap() {
        return real_cap;
    }
    public void setReal_cap(float real_cap) {
        this.real_cap = real_cap;
    }
    public float getMoncapstd() {
        return moncapstd;
    }
    public void setMoncapstd(float moncapstd) {
        this.moncapstd = moncapstd;
    }
    public float getReal_curr() {
        return real_curr;
    }
    public void setReal_curr(float real_curr) {
        this.real_curr = real_curr;
    }
    public float getEndurance_theory_timelong() {
        return endurance_theory_timelong;
    }
    public void setEndurance_theory_timelong(float endurance_theory_timelong) {
        this.endurance_theory_timelong = endurance_theory_timelong;
    }
    public float getEndurance_actual_timelong() {
        return endurance_actual_timelong;
    }
    public void setEndurance_actual_timelong(float endurance_actual_timelong) {
        this.endurance_actual_timelong = endurance_actual_timelong;
    }
    public float getEndurance_actual_timelong_max() {
        return endurance_actual_timelong_max;
    }
    public void setEndurance_actual_timelong_max(float endurance_actual_timelong_max) {
        this.endurance_actual_timelong_max = endurance_actual_timelong_max;
    }
    public float getEndurance_actual_timelong_min() {
        return endurance_actual_timelong_min;
    }
    public void setEndurance_actual_timelong_min(float endurance_actual_timelong_min) {
        this.endurance_actual_timelong_min = endurance_actual_timelong_min;
    }
    public int getIs_out_stand() {
        return is_out_stand;
    }
    public void setIs_out_stand(int is_out_stand) {
        this.is_out_stand = is_out_stand;
    }
    public String getNote() {
        return note;
    }
    public void setNote(String note) {
        this.note = note;
    }
    public String getStationName() {
        return stationName;
    }
    public void setStationName(String stationName) {
        this.stationName = stationName;
    }
    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;
    }
    public Page getPage() {
        return page;
    }
    public void setPage(Page page) {
        this.page = page;
    }
    
    
    public int getMonvolstd() {
        return monvolstd;
    }
    public void setMonvolstd(int monvolstd) {
        this.monvolstd = monvolstd;
    }
    public String getBatts_moncapstd() {
        return batts_moncapstd;
    }
    public void setBatts_moncapstd(String batts_moncapstd) {
        this.batts_moncapstd = batts_moncapstd;
    }
    public String getBatts_teststarttime() {
        return batts_teststarttime;
    }
    public void setBatts_teststarttime(String batts_teststarttime) {
        this.batts_teststarttime = batts_teststarttime;
    }
    public float getReal_cap_group1() {
        return real_cap_group1;
    }
    public void setReal_cap_group1(float real_cap_group1) {
        this.real_cap_group1 = real_cap_group1;
    }
    public float getReal_cap_group2() {
        return real_cap_group2;
    }
    public void setReal_cap_group2(float real_cap_group2) {
        this.real_cap_group2 = real_cap_group2;
    }
    public float getReal_cap_group3() {
        return real_cap_group3;
    }
    public void setReal_cap_group3(float real_cap_group3) {
        this.real_cap_group3 = real_cap_group3;
    }
    public float getReal_cap_group4() {
        return real_cap_group4;
    }
    public void setReal_cap_group4(float real_cap_group4) {
        this.real_cap_group4 = real_cap_group4;
    }
    public int getGroupcount() {
        return groupcount;
    }
    public void setGroupcount(int groupcount) {
        this.groupcount = groupcount;
    }
    public float getReal_cap_min() {
        return real_cap_min;
    }
    public void setReal_cap_min(float real_cap_min) {
        this.real_cap_min = real_cap_min;
    }
    public float getReal_cap_max() {
        return real_cap_max;
    }
    public void setReal_cap_max(float real_cap_max) {
        this.real_cap_max = real_cap_max;
    }
    @Override
    public String toString() {
        return "Batt_endurance [num=" + num + ", deviceId=" + deviceId
                + ", stationid=" + stationid + ", real_cap=" + real_cap
                + ", moncapstd=" + moncapstd + ", real_curr=" + real_curr
                + ", endurance_theory_timelong=" + endurance_theory_timelong
                + ", endurance_actual_timelong=" + endurance_actual_timelong
                + ", endurance_actual_timelong_max="
                + endurance_actual_timelong_max
                + ", endurance_actual_timelong_min="
                + endurance_actual_timelong_min + ", is_out_stand="
                + is_out_stand + ", real_cap_group1=" + real_cap_group1
                + ", real_cap_group2=" + real_cap_group2 + ", real_cap_group3="
                + real_cap_group3 + ", real_cap_group4=" + real_cap_group4
                + ", real_cap_min=" + real_cap_min + ", real_cap_max="
                + real_cap_max + ", groupcount=" + groupcount
                + ", batts_moncapstd=" + batts_moncapstd
                + ", batts_teststarttime=" + batts_teststarttime + ", note="
                + note + ", stationName=" + stationName + ", stationName1="
                + stationName1 + ", stationName2=" + stationName2
                + ", stationName5=" + stationName5 + ", monvolstd=" + monvolstd
                + ", page=" + page + "]";
    }
    
    
    
    
 
}