package com.whyc.dto;
|
|
import com.whyc.pojo.BattgroupData;
|
import com.whyc.pojo.BattgroupInfo;
|
import com.whyc.pojo.FileParam;
|
import com.whyc.pojo.StationInfo;
|
|
import java.util.List;
|
|
/**
|
* 电池组信息+文件参数信息
|
*/
|
public class BattGroupStationInfoWithFileParam {
|
|
private List<BattgroupData> dataList;
|
private FileParam fileParam;
|
private StationInfo stationInfo;
|
private String volPic;
|
private String resPic;
|
private String stdDevBv;
|
private String stdDevBr;
|
private String stdDevCr;
|
private String stdDevBs;
|
|
//总体评价
|
private int resGoodCount;
|
private int volGoodCount;
|
private int chainResGoodCount;
|
|
public List<BattgroupData> getDataList() {
|
return dataList;
|
}
|
|
public void setDataList(List<BattgroupData> dataList) {
|
this.dataList = dataList;
|
}
|
|
public FileParam getFileParam() {
|
return fileParam;
|
}
|
|
public void setFileParam(FileParam fileParam) {
|
this.fileParam = fileParam;
|
}
|
|
public StationInfo getStationInfo() {
|
return stationInfo;
|
}
|
|
public void setStationInfo(StationInfo stationInfo) {
|
this.stationInfo = stationInfo;
|
}
|
|
public String getVolPic() {
|
return volPic;
|
}
|
|
public void setVolPic(String volPic) {
|
this.volPic = volPic;
|
}
|
|
public String getResPic() {
|
return resPic;
|
}
|
|
public void setResPic(String resPic) {
|
this.resPic = resPic;
|
}
|
|
public int getResGoodCount() {
|
return resGoodCount;
|
}
|
|
public void setResGoodCount(int resGoodCount) {
|
this.resGoodCount = resGoodCount;
|
}
|
|
public int getVolGoodCount() {
|
return volGoodCount;
|
}
|
|
public void setVolGoodCount(int volGoodCount) {
|
this.volGoodCount = volGoodCount;
|
}
|
|
public int getChainResGoodCount() {
|
return chainResGoodCount;
|
}
|
|
public void setChainResGoodCount(int chainResGoodCount) {
|
this.chainResGoodCount = chainResGoodCount;
|
}
|
|
public String getStdDevBv() {
|
return stdDevBv;
|
}
|
|
public void setStdDevBv(String stdDevBv) {
|
this.stdDevBv = stdDevBv;
|
}
|
|
public String getStdDevBr() {
|
return stdDevBr;
|
}
|
|
public void setStdDevBr(String stdDevBr) {
|
this.stdDevBr = stdDevBr;
|
}
|
|
public String getStdDevCr() {
|
return stdDevCr;
|
}
|
|
public void setStdDevCr(String stdDevCr) {
|
this.stdDevCr = stdDevCr;
|
}
|
|
public String getStdDevBs() {
|
return stdDevBs;
|
}
|
|
public void setStdDevBs(String stdDevBs) {
|
this.stdDevBs = stdDevBs;
|
}
|
}
|