whycxzp
2024-01-13 c628cbf7942988ef5d0c6dd7fae447a6099a492b
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
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
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 volGoodCount;
    private int chainResGoodCount;
 
    private int battVolTestCount;
    private int battResTestCount;
    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;
    }
}