李林
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
package com.chinaztt.mes.technology.excel;
 
import com.alibaba.excel.annotation.ExcelProperty;
import lombok.Data;
 
@Data
public class RoutingExcelData {
    @ExcelProperty(value = "零件号")
    private String partNo;
 
    @ExcelProperty(value = "零件版本号")
    private String partVersion;
 
    @ExcelProperty(value = "零件描述")
    private String partName;
 
    @ExcelProperty(value = "线芯")
    private String wireCore;
 
    @ExcelProperty(value = "工艺路线替代")
    private String alternativeNo;
 
    @ExcelProperty(value = "工艺路线替代描述")
    private String alternativeDesc;
 
    @ExcelProperty(value = "逐步采用日期")
    private String phaseInDate;
 
    @ExcelProperty(value = "逐步淘汰日期")
    private String phaseOutDate;
 
    @ExcelProperty(value = "结构类型")
    private String bomTypeDb;
 
    @ExcelProperty(value = "工序号")
    private String operationOrder;
 
    @ExcelProperty(value = "工序描述")
    private String operationName;
 
    @ExcelProperty(value = "产出零件号")
    private String childPartNo;
 
    @ExcelProperty(value = "产出零件描述")
    private String childPartName;
 
    @ExcelProperty(value = "产出零件版本")
    private String childPartVersion;
 
    @ExcelProperty(value = "工作中心号")
    private String workCenter;
 
    @ExcelProperty(value = "工作中心描述")
    private String workCenterName;
 
    @ExcelProperty(value = "机器运转因素")
    private String machRunFactor;
 
    @ExcelProperty(value = "机器设置时间")
    private String machSetupTime;
 
    @ExcelProperty(value = "因素单位")
    private String runTimeCodeDb;
 
    @ExcelProperty(value = "劳力运转因素")
    private String laborRunFactor;
 
    @ExcelProperty(value = "劳力设置时间")
    private String laborSetupTime;
 
    @ExcelProperty(value = "人工类别")
    private String laborClassNo;
 
    @ExcelProperty(value = "劳力等级描述")
    private String laborRunName;
 
    @ExcelProperty(value = "班组人员")
    private String crewSize;
 
    private String routingKey;
 
}