whycxzp
2021-08-27 9f1dab940da5cef62e90333ec978d2fe48635273
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
package com.whyc.dto;
 
/**
 * 用于分析单体容量的最值的数据传输实体
 */
public class AnalysisMonCapDTO {
    private Integer battGroupId;
    private String battGroupName;
    private String stationName;
    /**标准单体容量*/
    private Double monCapStd;
    /**标准单体电压*/
    private Double monVolStd;
    /**测试电流*/
    private Float testCurr;
    /**测试容量*/
    private Float testCap;
    /**单体电压*/
    private Float monVol;
    /**测试记录数*/
    private Integer testRecordCount;
    /**单体编号*/
    private Integer monNum;
    /**最大单体电压*/
    private Float maxMonVol;
 
    public Double getMonCapStd() {
        return monCapStd;
    }
 
    public void setMonCapStd(Double monCapStd) {
        this.monCapStd = monCapStd;
    }
 
    public Double getMonVolStd() {
        return monVolStd;
    }
 
    public void setMonVolStd(Double monVolStd) {
        this.monVolStd = monVolStd;
    }
 
    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 Float getMonVol() {
        return monVol;
    }
 
    public void setMonVol(Float monVol) {
        this.monVol = monVol;
    }
 
    public Integer getTestRecordCount() {
        return testRecordCount;
    }
 
    public void setTestRecordCount(Integer testRecordCount) {
        this.testRecordCount = testRecordCount;
    }
 
    public Integer getMonNum() {
        return monNum;
    }
 
    public void setMonNum(Integer monNum) {
        this.monNum = monNum;
    }
 
    public Float getMaxMonVol() {
        return maxMonVol;
    }
 
    public void setMaxMonVol(Float maxMonVol) {
        this.maxMonVol = maxMonVol;
    }
 
    public Integer getBattGroupId() {
        return battGroupId;
    }
 
    public void setBattGroupId(Integer battGroupId) {
        this.battGroupId = battGroupId;
    }
 
    public String getBattGroupName() {
        return battGroupName;
    }
 
    public void setBattGroupName(String battGroupName) {
        this.battGroupName = battGroupName;
    }
 
    public String getStationName() {
        return stationName;
    }
 
    public void setStationName(String stationName) {
        this.stationName = stationName;
    }
}