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;
|
}
|
}
|