whyclxw
2025-05-28 e16302f9d475c7cc4dd18c5abf1a23cb5502e362
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
package com.whyc.pojo;
 
import com.baomidou.mybatisplus.annotation.TableField;
import com.baomidou.mybatisplus.annotation.TableId;
import org.apache.ibatis.type.Alias;
 
import java.util.Date;
 
/**
 * 一体机测试数据
 */
@Alias("FBOTestData")
public class FBOTestData {
 
    @TableId
    private Integer num;
    @TableField("BattGroupId")
    private Integer battGroupId;
    private Integer testRecordCount;
    @TableField("test_starttime")
    private Date testStartTime;
    @TableField("test_timelong")
    private Integer testTimeLong;
    private Date recordTime;
    private Integer recordNum;
    private Float onlineVol;
    private Float sumVol;
    private Float testCurr;
    private Float testCap;
    private Integer monNum;
    private Float monVol;
 
    public Integer getNum() {
        return num;
    }
 
    public void setNum(Integer 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 Date getTestStartTime() {
        return testStartTime;
    }
 
    public void setTestStartTime(Date testStartTime) {
        this.testStartTime = testStartTime;
    }
 
    public Integer getTestTimeLong() {
        return testTimeLong;
    }
 
    public void setTestTimeLong(Integer testTimeLong) {
        this.testTimeLong = testTimeLong;
    }
 
    public Date getRecordTime() {
        return recordTime;
    }
 
    public void setRecordTime(Date recordTime) {
        this.recordTime = recordTime;
    }
 
    public Integer getRecordNum() {
        return recordNum;
    }
 
    public void setRecordNum(Integer recordNum) {
        this.recordNum = recordNum;
    }
 
    public Float getOnlineVol() {
        return onlineVol;
    }
 
    public void setOnlineVol(Float onlineVol) {
        this.onlineVol = onlineVol;
    }
 
    public Float getSumVol() {
        return sumVol;
    }
 
    public void setSumVol(Float sumVol) {
        this.sumVol = sumVol;
    }
 
    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;
    }
}