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; }