李林
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
package com.chinaztt.mes.technology.excel;
 
import com.alibaba.excel.annotation.ExcelProperty;
import lombok.Data;
 
 
/**
 * @Author: jipf
 * @Date: 2020-11-30 9:30
 */
@Data
public class BomData {
 
    @ExcelProperty(value = "零件号")
    private String partNo;
    @ExcelProperty(value = "零件名称")
    private String partName;
    @ExcelProperty(value = "版本号")
    private String version;
    @ExcelProperty(value = "绝缘颜色")
    private String insulationColor;
    @ExcelProperty(value = "护套颜色")
    private String sheathColor;
    @ExcelProperty(value = "特性1")
    private String characteristicOne;
}