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
package com.whyc.pojo;
 
import java.util.Date;
 
public class BatteryStorageTestData {
 
    private Long id;
    private Integer batteryStorageId;
    private Date startTestTime;
    private Date stopTestTime;
    private Integer testDuration;
    private Integer testType;
    private String startReason;
    private Float voltage;
    private Float current;
    private Float realCapacity;
 
    /**不属于表的字段*/
    private Integer testRecordCount;
    private Integer testRecordCountEx;
 
    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 Long getId() {
        return id;
    }
 
    public void setId(Long id) {
        this.id = id;
    }
 
    public Date getStartTestTime() {
        return startTestTime;
    }
 
    public void setStartTestTime(Date startTestTime) {
        this.startTestTime = startTestTime;
    }
 
    public Date getStopTestTime() {
        return stopTestTime;
    }
 
    public void setStopTestTime(Date stopTestTime) {
        this.stopTestTime = stopTestTime;
    }
 
    public Integer getTestType() {
        return testType;
    }
 
    public void setTestType(Integer testType) {
        this.testType = testType;
    }
 
    public String getStartReason() {
        return startReason;
    }
 
    public void setStartReason(String startReason) {
        this.startReason = startReason;
    }
 
    public Integer getBatteryStorageId() {
        return batteryStorageId;
    }
 
    public void setBatteryStorageId(Integer batteryStorageId) {
        this.batteryStorageId = batteryStorageId;
    }
 
    public Integer getTestDuration() {
        return testDuration;
    }
 
    public void setTestDuration(Integer testDuration) {
        this.testDuration = testDuration;
    }
 
    public Float getVoltage() {
        return voltage;
    }
 
    public void setVoltage(Float voltage) {
        this.voltage = voltage;
    }
 
    public Float getCurrent() {
        return current;
    }
 
    public void setCurrent(Float current) {
        this.current = current;
    }
 
    public Float getRealCapacity() {
        return realCapacity;
    }
 
    public void setRealCapacity(Float realCapacity) {
        this.realCapacity = realCapacity;
    }
}