李林
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
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
package com.chinaztt.mes.basic.excel;
 
import com.alibaba.excel.annotation.ExcelProperty;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
 
/**
 * @author ZTT
 */
@Data
public class PartData {
    /**
     * 零件号
     */
    @ExcelProperty("零件号")
    private String partNo;
    /**
     * 名称
     */
    @ExcelProperty("零件名称")
    private String partName;
    /**
     * 单位
     */
    @ExcelProperty("规格")
    private String spec;
    /**
     * 电压等级
     */
    @ExcelProperty("电压等级")
    private String voltageLevel;
    /**
     * 特性1
     */
    @ExcelProperty(value = "特性1")
    private String characteristic1;
    /**
     * 特性2
     */
    @ExcelProperty(value = "特性2")
    private String characteristic2;
    /**
     * 特性3
     */
    @ExcelProperty(value = "特性3")
    private String characteristic3;
    /**
     * 型号
     */
    @ExcelProperty(value = "型号")
    private String partModel;
    /**
     * 单位
     */
    @ExcelProperty("单位")
    private String unit;
    /**
     * 零件类型
     */
    @ExcelProperty("零件类型")
    private String materialType;
    /**
     * 一级分类
     */
    @ExcelProperty("一级分类")
    private String assortment;
    /**
     * 二级分类
     */
    @ExcelProperty("二级分类")
    private String category;
    /**
     * 三级分类
     */
    @ExcelProperty("三级分类")
    private String threeLevelClassification;
    /**
     *
     */
    @ExcelProperty("计划方法")
    private String planningMethod;
    /**
     *
     */
    @ExcelProperty("版本号")
    private String engChgLevel;
    /**
     *
     */
    @ExcelProperty("IFS启用批次管理")
    private Boolean lotTrackingIfs;
    /**
     *
     */
    @ExcelProperty("备注")
    private String description ;
}