Fixiaobai
2023-11-07 940f06f6d8e5508f39bd7f8ce7791d60bfc0686c
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
98
99
package com.chinaztt.mes.technology.excel;
 
import com.alibaba.excel.annotation.ExcelProperty;
import lombok.Data;
 
/**
 * @Author: zhangxy
 * @Date: 2020-11-30 9:30
 */
@Data
public class StructureData {
 
    @ExcelProperty(value = "客户")
    private String custom;
 
    @ExcelProperty(value = "零件号")
    private String partNo;
 
    @ExcelProperty(value = "零件名称")
    private String partName;
 
    @ExcelProperty(value = "子件编号")
    private String sonPartNo;
 
    @ExcelProperty(value = "子件名称(可多填)")
    private String sonPartName;
 
    @ExcelProperty(value = "模具编号")
    private String sharpenerNo;
 
    @ExcelProperty(value = "每模穴数")
    private String caveNum;
 
    @ExcelProperty(value = "产品克重(kg)")
    private String gramWeight;
 
    @ExcelProperty(value = "浇口克重(kg)")
    private String gateGramWeight;
 
    @ExcelProperty(value = "成型周期(S)")
    private String moldingCycle;
 
    @ExcelProperty(value = "机台(吨)")
    private String machine;
 
    @ExcelProperty(value = "回料比例(%)")
    private String scale;
 
    @ExcelProperty(value= "烘料时间(H)")
    private String dryingTime;
 
    @ExcelProperty(value = "烘料温度(℃)")
    private String dryingTemperature;
 
    @ExcelProperty(value = "包装信息")
    private String packingInfo;
 
    @ExcelProperty(value = "父件")
    private String fatherPartNo;
 
    @ExcelProperty(value = "系统描述")
    private String remark;
 
    @ExcelProperty(value = "版本")
    private String fatherVersion;
 
    @ExcelProperty(value = "结构类型")
    private String structureType;
 
    @ExcelProperty(value = "替代")
    private String alternativeNo;
 
    @ExcelProperty(value = "替代描述")
    private String alternativeDesc;
 
    @ExcelProperty(value = "行项号")
    private String lineItemNo;
 
    @ExcelProperty(value = "子件")
    private String childPartNo;
 
    @ExcelProperty(value = "子件版本")
    private String childVersion;
 
    @ExcelProperty(value = "子件描述")
    private String childRemark;
 
    @ExcelProperty(value = "单位数量")
    private String qpa;
 
    @ExcelProperty(value = "单位")
    private String unit;
 
    @ExcelProperty(value = "盘数")
    private String diskNum;
 
    @ExcelProperty(value = "消耗工序")
    private String operationName;
}