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
package com.whyc.pojo;
 
import java.util.Date;
 
public class BattTestDataStop {
 
    private Long         num;
    private Integer        BattGroupId;
    private Integer        testRecordCount;
    private Integer        testType;
    private Integer        dataNew;
    private Integer        dataAvailable;
    private Integer        recordNum;
    private Date        testStarttime;
    private Date recordTime;
    private Integer        testTimelong;
    private Float        onlineVol;
    private Float        groupVol;
    private Float        testCurr;
    private Float        testCap;
    private Integer        monNum;
    private Float        monVol;
    private Float        monTmp;
 
    public Long getNum() {
        return num;
    }
 
    public void setNum(Long num) {
        this.num = num;
    }
 
    public Integer getBattGroupId() {
        return BattGroupId;
    }
 
    public void setBattGroupId(Integer battGroupId) {
        BattGroupId = battGroupId;
    }
 
    public Integer getTestRecordCount() {
        return testRecordCount;
    }
 
    public void setTestRecordCount(Integer testRecordCount) {
        this.testRecordCount = testRecordCount;
    }
 
    public Integer getTestType() {
        return testType;
    }
 
    public void setTestType(Integer testType) {
        this.testType = testType;
    }
 
    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 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 Float getOnlineVol() {
        return onlineVol;
    }
 
    public void setOnlineVol(Float onlineVol) {
        this.onlineVol = onlineVol;
    }
 
    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 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 Float getMonTmp() {
        return monTmp;
    }
 
    public void setMonTmp(Float monTmp) {
        this.monTmp = monTmp;
    }
}