自动化立体仓库 - WMS系统
pang.jiabao
2025-04-30 abb9b5c51d8a20be68b64e0c4a9620f6578d2e3a
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
package com.zy.asrs.entity.param;
 
import com.alibaba.excel.annotation.ExcelProperty;
import lombok.Data;
 
/**
 * @author pang.jiabao
 * @description 产品校验excel导入param
 * @createDate 2025/4/29 9:19
 */
@Data
public class ProductCalibrationExcelParam {
 
    // index从0开始
    @ExcelProperty(value = "卷号",index = 0)
    private String rollNo;
 
    @ExcelProperty(value = "校验结果 合格/不合格",index = 1)
    private String qualified;
 
}