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;
|
|
}
|