package com.whyc.dto;
|
|
import com.baomidou.mybatisplus.annotation.TableField;
|
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 condPic;
|
private String chainPic;
|
private String stdDevBv;
|
private String stdDevBr;
|
private String stdDevCr;
|
private String stdDevBs;
|
|
//总体评价
|
private int resGoodCount;
|
private int serGoodCount;
|
private int volGoodCount;
|
private int chainResGoodCount;
|
|
private int battVolTestCount;
|
private int battResTestCount;
|
private int battSerTestCount;
|
private int battChainResTestCount;
|
|
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;
|
}
|
|
public int getBattVolTestCount() {
|
return battVolTestCount;
|
}
|
|
public void setBattVolTestCount(int battVolTestCount) {
|
this.battVolTestCount = battVolTestCount;
|
}
|
|
public int getBattResTestCount() {
|
return battResTestCount;
|
}
|
|
public void setBattResTestCount(int battResTestCount) {
|
this.battResTestCount = battResTestCount;
|
}
|
|
public int getBattChainResTestCount() {
|
return battChainResTestCount;
|
}
|
|
public void setBattChainResTestCount(int battChainResTestCount) {
|
this.battChainResTestCount = battChainResTestCount;
|
}
|
|
public String getCondPic() {
|
return condPic;
|
}
|
|
public void setCondPic(String condPic) {
|
this.condPic = condPic;
|
}
|
|
public String getChainPic() {
|
return chainPic;
|
}
|
|
public void setChainPic(String chainPic) {
|
this.chainPic = chainPic;
|
}
|
|
public int getSerGoodCount() {
|
return serGoodCount;
|
}
|
|
public void setSerGoodCount(int serGoodCount) {
|
this.serGoodCount = serGoodCount;
|
}
|
|
public int getBattSerTestCount() {
|
return battSerTestCount;
|
}
|
|
public void setBattSerTestCount(int battSerTestCount) {
|
this.battSerTestCount = battSerTestCount;
|
}
|
}
|