whycxzp
2022-04-22 7f9ac4bf1b38b8e622f8c759efeca2af9dc12a48
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
package com.whyc.pojo;
 
import com.baomidou.mybatisplus.annotation.IdType;
import com.baomidou.mybatisplus.annotation.TableField;
import com.baomidou.mybatisplus.annotation.TableId;
import com.baomidou.mybatisplus.annotation.TableName;
 
import java.util.Date;
 
@TableName(schema = "db_batt_testdata",value = "tb_batttestdata_inf")
public class BattTestDataInf {
 
    @TableId(type = IdType.AUTO)
    private Long num;
 
    @TableField("BattGroupId")
    private Integer            battGroupId;
    private Integer            testRecordCount;
    private Integer            testRecordCountEx;
    private Integer            testType;
    private Integer            recordTimeInterval;
    private Integer            dataNew;
    private Integer            dataAvailable;
    private Integer            recordNum;
    private Date            testStarttime;
    private Date            testStarttimeEx;
    private Integer            testStarttype;
    private Date            recordTime;
    private Integer            testTimelong;
    private Integer            testStoptype;
    private Float            groupVol;
    private Float            testCurr;
    private Float            testCap;
    private Integer            maxMonnum;
    private Float            maxMonvol;
    private Integer            minMonnum;
    private Float            minMonvol;
    private Integer            monNum;
    private Float            monVol;
    private Integer            uploadUsrId;
    private Integer            uploadDataExt;
    private Integer            uploadClientType;
 
    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 Integer getTestRecordCount() {
        return testRecordCount;
    }
 
    public void setTestRecordCount(Integer testRecordCount) {
        this.testRecordCount = testRecordCount;
    }
 
    public Integer getTestRecordCountEx() {
        return testRecordCountEx;
    }
 
    public void setTestRecordCountEx(Integer testRecordCountEx) {
        this.testRecordCountEx = testRecordCountEx;
    }
 
    public Integer getTestType() {
        return testType;
    }
 
    public void setTestType(Integer testType) {
        this.testType = testType;
    }
 
    public Integer getRecordTimeInterval() {
        return recordTimeInterval;
    }
 
    public void setRecordTimeInterval(Integer recordTimeInterval) {
        this.recordTimeInterval = recordTimeInterval;
    }
 
    public Integer getDataNew() {
        return dataNew;
    }
 
    public void setDataNew(Integer dataNew) {
        this.dataNew = dataNew;
    }
 
    public Integer getDataAvailable() {
        return dataAvailable;
    }
 
    public void setDataAvailable(Integer dataAvailable) {
        this.dataAvailable = dataAvailable;
    }
 
    public Integer getRecordNum() {
        return recordNum;
    }
 
    public void setRecordNum(Integer recordNum) {
        this.recordNum = recordNum;
    }
 
    public Date getTestStarttime() {
        return testStarttime;
    }
 
    public void setTestStarttime(Date testStarttime) {
        this.testStarttime = testStarttime;
    }
 
    public Date getTestStarttimeEx() {
        return testStarttimeEx;
    }
 
    public void setTestStarttimeEx(Date testStarttimeEx) {
        this.testStarttimeEx = testStarttimeEx;
    }
 
    public Integer getTestStarttype() {
        return testStarttype;
    }
 
    public void setTestStarttype(Integer testStarttype) {
        this.testStarttype = testStarttype;
    }
 
    public Date getRecordTime() {
        return recordTime;
    }
 
    public void setRecordTime(Date recordTime) {
        this.recordTime = recordTime;
    }
 
    public Integer getTestTimelong() {
        return testTimelong;
    }
 
    public void setTestTimelong(Integer testTimelong) {
        this.testTimelong = testTimelong;
    }
 
    public Integer getTestStoptype() {
        return testStoptype;
    }
 
    public void setTestStoptype(Integer testStoptype) {
        this.testStoptype = testStoptype;
    }
 
    public Float getGroupVol() {
        return groupVol;
    }
 
    public void setGroupVol(Float groupVol) {
        this.groupVol = groupVol;
    }
 
    public Float getTestCurr() {
        return testCurr;
    }
 
    public void setTestCurr(Float testCurr) {
        this.testCurr = testCurr;
    }
 
    public Float getTestCap() {
        return testCap;
    }
 
    public void setTestCap(Float testCap) {
        this.testCap = testCap;
    }
 
    public Integer getMaxMonnum() {
        return maxMonnum;
    }
 
    public void setMaxMonnum(Integer maxMonnum) {
        this.maxMonnum = maxMonnum;
    }
 
    public Float getMaxMonvol() {
        return maxMonvol;
    }
 
    public void setMaxMonvol(Float maxMonvol) {
        this.maxMonvol = maxMonvol;
    }
 
    public Integer getMinMonnum() {
        return minMonnum;
    }
 
    public void setMinMonnum(Integer minMonnum) {
        this.minMonnum = minMonnum;
    }
 
    public Float getMinMonvol() {
        return minMonvol;
    }
 
    public void setMinMonvol(Float minMonvol) {
        this.minMonvol = minMonvol;
    }
 
    public Integer getMonNum() {
        return monNum;
    }
 
    public void setMonNum(Integer monNum) {
        this.monNum = monNum;
    }
 
    public Float getMonVol() {
        return monVol;
    }
 
    public void setMonVol(Float monVol) {
        this.monVol = monVol;
    }
 
    public Integer getUploadUsrId() {
        return uploadUsrId;
    }
 
    public void setUploadUsrId(Integer uploadUsrId) {
        this.uploadUsrId = uploadUsrId;
    }
 
    public Integer getUploadDataExt() {
        return uploadDataExt;
    }
 
    public void setUploadDataExt(Integer uploadDataExt) {
        this.uploadDataExt = uploadDataExt;
    }
 
    public Integer getUploadClientType() {
        return uploadClientType;
    }
 
    public void setUploadClientType(Integer uploadClientType) {
        this.uploadClientType = uploadClientType;
    }
}