zhuguifei
2026-03-10 2c1fd10c6fbabb8e9f0e9f07fe66fb36c008e883
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
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
package com.shlanbao.tzsc.base.mapping;
 
import java.io.Serializable;
import java.util.Date;
/**
 * MES质检数据概述
 * @author TRAVLER
 *
 */
public class QualityCheckInfo implements Serializable{
    private String id;
    private String checkType;//对应xml<checkType>,检测来源
    private String oid;
    private String sc;// 样本号(对应sc)
    private String st;// 物料编码(对应st)
    private Double scScore;// 得分(对应sc_score)
    private String scLevel;//质量水平
    private String stVersion;// 物料版本(st_version)
    private String matDes;//物料描述(对应description)
    private Date createDate;//创建日期(xml对应creation_date)
    private String matName;//牌号(对应ii_brand)
    private String iiLot;//生产批次(ii_lot)
    private String teamId;//班组ID
    private String teamName;//班组(ii_team)
    private String shiftId;//班次ID
    private String shiftName;//班次(ii_shift)
    private String iiChk;//检验员名(ii_chk)
    private String iiAdk;//审核人名(ii_adt)
    private String remark;//备注(ii_remark)
    private String rollerCode;//卷烟机ID
    private String rollerName;//卷烟机(ii_coil_tz)
    private String packerCode;//包装机ID
    private String packerName;//包装机(ii_pack_jb_tz)
    private String sealerCode;//封装机ID
    private String sealerName;//封箱机(ii_sealer_tz)
    private String orderNum;//订单号(ii_order)
    private String samSequence;//取样序号(ii_samsequence)
    private String seasonCpsh;//季度(ii_season_cpsh_tz)
    private Date checkTime;//检测时间(ii_chk_time_cpsh)
    private String shiftTz;//滕州班次(ii_shift_tz)
    private String shiftTzCode;//滕州班次(ii_shift_tz)
    private Date createTime;//数据存表时间
    private String fileInfo;//解析的xml文件信息
    
    public String getScLevel() {
        return scLevel;
    }
    public void setScLevel(String scLevel) {
        this.scLevel = scLevel;
    }
    public String getId() {
        return id;
    }
    public void setId(String id) {
        this.id = id;
    }
    public String getCheckType() {
        return checkType;
    }
    public void setCheckType(String checkType) {
        this.checkType = checkType;
    }
    public String getOid() {
        return oid;
    }
    public void setOid(String oid) {
        this.oid = oid;
    }
    public String getSc() {
        return sc;
    }
    public void setSc(String sc) {
        this.sc = sc;
    }
    public String getSt() {
        return st;
    }
    public void setSt(String st) {
        this.st = st;
    }
    public Double getScScore() {
        return scScore;
    }
    public void setScScore(Double scScore) {
        this.scScore = scScore;
    }
    public String getStVersion() {
        return stVersion;
    }
    public void setStVersion(String stVersion) {
        this.stVersion = stVersion;
    }
    public String getMatDes() {
        return matDes;
    }
    public void setMatDes(String matDes) {
        this.matDes = matDes;
    }
    public Date getCreateDate() {
        return createDate;
    }
    public void setCreateDate(Date createDate) {
        this.createDate = createDate;
    }
    public String getMatName() {
        return matName;
    }
    public void setMatName(String matName) {
        this.matName = matName;
    }
    public String getIiLot() {
        return iiLot;
    }
    public void setIiLot(String iiLot) {
        this.iiLot = iiLot;
    }
    public String getTeamId() {
        return teamId;
    }
    public void setTeamId(String teamId) {
        this.teamId = teamId;
    }
    public String getTeamName() {
        return teamName;
    }
    public void setTeamName(String teamName) {
        this.teamName = teamName;
    }
    public String getShiftId() {
        return shiftId;
    }
    public void setShiftId(String shiftId) {
        this.shiftId = shiftId;
    }
    public String getShiftName() {
        return shiftName;
    }
    public void setShiftName(String shiftName) {
        this.shiftName = shiftName;
    }
    public String getIiChk() {
        return iiChk;
    }
    public void setIiChk(String iiChk) {
        this.iiChk = iiChk;
    }
    public String getIiAdk() {
        return iiAdk;
    }
    public void setIiAdk(String iiAdk) {
        this.iiAdk = iiAdk;
    }
    public String getRemark() {
        return remark;
    }
    public void setRemark(String remark) {
        this.remark = remark;
    }
    public String getRollerCode() {
        return rollerCode;
    }
    public void setRollerCode(String rollerCode) {
        this.rollerCode = rollerCode;
    }
    public String getRollerName() {
        return rollerName;
    }
    public void setRollerName(String rollerName) {
        this.rollerName = rollerName;
    }
    public String getPackerCode() {
        return packerCode;
    }
    public void setPackerCode(String packerCode) {
        this.packerCode = packerCode;
    }
    public String getPackerName() {
        return packerName;
    }
    public void setPackerName(String packerName) {
        this.packerName = packerName;
    }
    public String getSealerCode() {
        return sealerCode;
    }
    public void setSealerCode(String sealerCode) {
        this.sealerCode = sealerCode;
    }
    public String getSealerName() {
        return sealerName;
    }
    public void setSealerName(String sealerName) {
        this.sealerName = sealerName;
    }
    public String getOrderNum() {
        return orderNum;
    }
    public void setOrderNum(String orderNum) {
        this.orderNum = orderNum;
    }
    public String getSamSequence() {
        return samSequence;
    }
    public void setSamSequence(String samSequence) {
        this.samSequence = samSequence;
    }
    public String getSeasonCpsh() {
        return seasonCpsh;
    }
    public void setSeasonCpsh(String seasonCpsh) {
        this.seasonCpsh = seasonCpsh;
    }
    public Date getCheckTime() {
        return checkTime;
    }
    public void setCheckTime(Date checkTime) {
        this.checkTime = checkTime;
    }
    public String getShiftTz() {
        return shiftTz;
    }
    public void setShiftTz(String shiftTz) {
        this.shiftTz = shiftTz;
    }
    public String getShiftTzCode() {
        return shiftTzCode;
    }
    public void setShiftTzCode(String shiftTzCode) {
        this.shiftTzCode = shiftTzCode;
    }
    public Date getCreateTime() {
        return createTime;
    }
    public void setCreateTime(Date createTime) {
        this.createTime = createTime;
    }
    public String getFileInfo() {
        return fileInfo;
    }
    public void setFileInfo(String fileInfo) {
        this.fileInfo = fileInfo;
    }
    
}