package com.chinaztt.mes.quality.excel;
|
|
import com.alibaba.excel.annotation.ExcelProperty;
|
import lombok.Data;
|
|
/**
|
* @Auther: shihongzhi
|
* @Date: 2021/12/22/17:03
|
* @Description:
|
*/
|
@Data
|
public class TestStandardData {
|
@ExcelProperty("标准编号")
|
private String standardNo;
|
|
@ExcelProperty("标准名称")
|
private String standardName;
|
|
@ExcelProperty("检验类别")
|
private String inspectionType;
|
|
@ExcelProperty("工序名称")
|
private String operationName;
|
|
@ExcelProperty("判定条件")
|
private String judgeFormula;
|
|
@ExcelProperty("参数编号")
|
private String code;
|
|
@ExcelProperty("参数项")
|
private String parameterItem;
|
|
@ExcelProperty("要求范围1")
|
private String referenceValue1;
|
|
@ExcelProperty("要求范围2")
|
private String referenceValue2;
|
|
@ExcelProperty("判定公式")
|
private String paramJudgeFormula;
|
|
@ExcelProperty("计算公式")
|
private String valueFormula;
|
|
@ExcelProperty("是否引用工艺")
|
private String isReference;
|
|
@ExcelProperty("线芯")
|
private String wireCore;
|
|
@ExcelProperty("参数项的检测类型")
|
private String paramType;
|
|
@ExcelProperty("部位")
|
private String position;
|
|
@ExcelProperty("通道")
|
private String aisle;
|
|
@ExcelProperty("是否抽检")
|
private String isCheck;
|
}
|