广丰卷烟厂数采质量分析系统
zhuguifei
2026-03-04 63b4909ac5d0b7355be211cc7080673b41cdb3cc
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
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
package org.dromara.qa.qm.domain.vo;
 
import java.util.Date;
 
import org.dromara.qa.qm.domain.QmBatch;
import cn.idev.excel.annotation.ExcelIgnoreUnannotated;
import cn.idev.excel.annotation.ExcelProperty;
import io.github.linpeilie.annotations.AutoMapper;
import lombok.Data;
 
import java.io.Serial;
import java.io.Serializable;
 
 
/**
 * 检验批次视图对象 qm_batch
 *
 * @author zhuguifei
 * @date 2026-03-02
 */
@Data
@ExcelIgnoreUnannotated
@AutoMapper(target = QmBatch.class)
public class QmBatchVo implements Serializable {
 
    @Serial
    private static final long serialVersionUID = 1L;
 
    /**
     * 编码
     */
    @ExcelProperty(value = "编码")
    private String id;
 
    /**
     * 批次代码
     */
    @ExcelProperty(value = "批次代码")
    private String batchCode;
 
    /**
     * 批次名称
     */
    @ExcelProperty(value = "批次名称")
    private String batchName;
 
    /**
     * A-制丝 B-成型 C-卷包 D-封箱 E-糖香料
     */
    @ExcelProperty(value = "A-制丝 B-成型 C-卷包 D-封箱 E-糖香料")
    private String typ;
 
    /**
     * 机台代码
     */
    @ExcelProperty(value = "机台代码")
    private String eqpCode;
 
    /**
     * 牌号
     */
    @ExcelProperty(value = "牌号")
    private String matCode;
 
    /**
     * 判定依据代码
     */
    @ExcelProperty(value = "判定依据代码")
    private String judgeCode;
 
    /**
     * 批次生成日期
     */
    @ExcelProperty(value = "批次生成日期")
    private Date batchDate;
 
    /**
     * 使用标志
     */
    @ExcelProperty(value = "使用标志")
    private String isflag;
 
    /**
     * 启用标志
     */
    @ExcelProperty(value = "启用标志")
    private String enabled;
 
    /**
     * 到货总量
     */
    @ExcelProperty(value = "到货总量")
    private Long totalNum;
 
    /**
     * 综合判定
     */
    @ExcelProperty(value = "综合判定")
    private String results;
 
    /**
     * 批准人
     */
    @ExcelProperty(value = "批准人")
    private String approver;
 
    /**
     * 审核人
     */
    @ExcelProperty(value = "审核人")
    private String auditor;
 
    /**
     * 创建人
     */
    @ExcelProperty(value = "创建人")
    private String creater;
 
    /**
     * 制表日期
     */
    @ExcelProperty(value = "制表日期")
    private Date tabDate;
 
    /**
     * 版本名称
     */
    @ExcelProperty(value = "版本名称")
    private String verName;
 
    /**
     * 版本编号
     */
    @ExcelProperty(value = "版本编号")
    private String verCode;
 
    /**
     * 保存期
     */
    @ExcelProperty(value = "保存期")
    private String archDate;
 
    /**
     * 0-未上传mes,1-已上传, 3-从MES下载
     */
    @ExcelProperty(value = "0-未上传mes,1-已上传, 3-从MES下载")
    private String flag;
 
    /**
     * 上传MES时间
     */
    @ExcelProperty(value = "上传MES时间")
    private Date toMesDate;
 
    /**
     * 从MES时间下载
     */
    @ExcelProperty(value = "从MES时间下载")
    private Date fromMesDate;
 
    /**
     * 删除标志
     */
    @ExcelProperty(value = "删除标志")
    private Long deleted;
 
    /**
     * 批次描述
     */
    @ExcelProperty(value = "批次描述")
    private String batchDes;
 
    /**
     * 类别 0:成品 1:辅材
     */
    @ExcelProperty(value = "类别 0:成品 1:辅材")
    private String category;
 
    /**
     * 卷制工号
     */
    @ExcelProperty(value = "卷制工号")
    private String makeno;
 
    /**
     * 班次机号
     */
    @ExcelProperty(value = "班次机号")
    private String shifteqpno;
 
    /**
     * 装箱号
     */
    @ExcelProperty(value = "装箱号")
    private String boxno;
 
    /**
     * 父批次号
     */
    @ExcelProperty(value = "父批次号")
    private String pid;
 
    /**
     * 复核人
     */
    @ExcelProperty(value = "复核人")
    private String reviewer;
 
    /**
     * 复检次数
     */
    @ExcelProperty(value = "复检次数")
    private Long rvcount;
 
    /**
     * 批次状态
     */
    @ExcelProperty(value = "批次状态")
    private String state;
 
    /**
     * 复核日期
     */
    @ExcelProperty(value = "复核日期")
    private Date reviewTime;
 
    /**
     * 审核日期
     */
    @ExcelProperty(value = "审核日期")
    private Date auditTime;
 
    /**
     * 规格
     */
    @ExcelProperty(value = "规格")
    private String spec;
 
    /**
     * 批准时间
     */
    @ExcelProperty(value = "批准时间")
    private Date approveTime;
 
    /**
     * 到货单位
     */
    @ExcelProperty(value = "到货单位")
    private String unit;
 
    /**
     * 到货日期
     */
    @ExcelProperty(value = "到货日期")
    private Date arrivalTime;
 
    /**
     * 存放地点
     */
    @ExcelProperty(value = "存放地点")
    private String storagePlace;
 
    /**
     * 检验员
     */
    @ExcelProperty(value = "检验员")
    private String checker;
 
    /**
     * 接单日期
     */
    @ExcelProperty(value = "接单日期")
    private Date receiveTime;
 
    /**
     * 报检日期
     */
    @ExcelProperty(value = "报检日期")
    private Date inspTime;
 
    /**
     * 仓库保管员
     */
    @ExcelProperty(value = "仓库保管员")
    private String storer;
 
    /**
     * 是否验证
     */
    @ExcelProperty(value = "是否验证")
    private String isverify;
 
    /**
     * 是否检验
     */
    @ExcelProperty(value = "是否检验")
    private String ischk;
 
    /**
     * 备用1
     */
    @ExcelProperty(value = "备用1")
    private String bak1;
 
    /**
     * 备用2
     */
    @ExcelProperty(value = "备用2")
    private String bak2;
 
 
}