lxw
2022-10-31 77dbadecb893236fa2cd5e90eb0b4ad71614183e
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
118
119
120
121
122
123
124
125
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;
    }
}