李林
2023-10-07 658d4927d468c47208fd012d9128b09249c07eff
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
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;
}