whyclxw
2024-04-17 b49b5bd7da878564a91ea09ec1a3a63404a21694
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
package com.table.badbatt;
 
import java.io.Serializable;
import java.util.Date;
 
public class Batttestdatastop implements Serializable{
    private Integer num;
    private Integer BattGroupId;
    private Integer test_record_count;
    private Integer test_type;
    private Integer data_new;
    private Integer data_available;
    private Integer record_num;
    private Date test_starttime;
    private Date record_time;
    private Integer test_timelong;
    private Float group_vol;
    private Float test_curr;
    private Float test_cap;
    private Integer mon_num;
    private Float mon_vol;
    private Float lowC;
    private Float lowV;
    private Float mon_avg;
    private Float mon_min;
    private Float mon_max;
    
    public Batttestdatastop() {
    }
 
    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 getTest_record_count() {
        return test_record_count;
    }
 
    public void setTest_record_count(Integer test_record_count) {
        this.test_record_count = test_record_count;
    }
 
    public Integer getTest_type() {
        return test_type;
    }
 
    public void setTest_type(Integer test_type) {
        this.test_type = test_type;
    }
 
    public Integer getData_new() {
        return data_new;
    }
 
    public void setData_new(Integer data_new) {
        this.data_new = data_new;
    }
 
    public Integer getData_available() {
        return data_available;
    }
 
    public void setData_available(Integer data_available) {
        this.data_available = data_available;
    }
 
    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 Date getRecord_time() {
        return record_time;
    }
 
    public void setRecord_time(Date record_time) {
        this.record_time = record_time;
    }
 
    public Integer getTest_timelong() {
        return test_timelong;
    }
 
    public void setTest_timelong(Integer test_timelong) {
        this.test_timelong = test_timelong;
    }
 
    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 getTest_cap() {
        return test_cap;
    }
 
    public void setTest_cap(Float test_cap) {
        this.test_cap = test_cap;
    }
 
    public Integer getMon_num() {
        return mon_num;
    }
 
    public void setMon_num(Integer mon_num) {
        this.mon_num = mon_num;
    }
 
    public Float getMon_vol() {
        return mon_vol;
    }
 
    public void setMon_vol(Float mon_vol) {
        this.mon_vol = mon_vol;
    }
    
    
 
    public Float getLowC() {
        return lowC;
    }
 
    public void setLowC(Float lowC) {
        this.lowC = lowC;
    }
 
    public Float getLowV() {
        return lowV;
    }
 
    public void setLowV(Float lowV) {
        this.lowV = lowV;
    }
    
    public Float getMon_avg() {
        return mon_avg;
    }
 
    public void setMon_avg(Float mon_avg) {
        this.mon_avg = mon_avg;
    }
 
    public Float getMon_min() {
        return mon_min;
    }
 
    public void setMon_min(Float mon_min) {
        this.mon_min = mon_min;
    }
    
    public Float getMon_max() {
        return mon_max;
    }
 
    public void setMon_max(Float mon_max) {
        this.mon_max = mon_max;
    }
 
    @Override
    public String toString() {
        return "Batttestdatastop [num=" + num + ", BattGroupId=" + BattGroupId
                + ", test_record_count=" + test_record_count + ", test_type="
                + test_type + ", data_new=" + data_new + ", data_available="
                + data_available + ", record_num=" + record_num
                + ", test_starttime=" + test_starttime + ", record_time="
                + record_time + ", test_timelong=" + test_timelong
                + ", group_vol=" + group_vol + ", test_curr=" + test_curr
                + ", test_cap=" + test_cap + ", mon_num=" + mon_num
                + ", mon_vol=" + mon_vol + ", lowC=" + lowC + ", lowV=" + lowV
                + ", mon_avg=" + mon_avg + ", mon_min=" + mon_min
                + ", mon_max=" + mon_max + "]";
    }
 
    
    
}