|  |  | 
 |  |  | package com.zy.common.utils.excel.matcode; | 
 |  |  |  | 
 |  |  | import com.alibaba.excel.annotation.ExcelProperty; | 
 |  |  | import com.alibaba.excel.annotation.write.style.ColumnWidth; | 
 |  |  |  | 
 |  |  | /** | 
 |  |  |  * Created by vincent on 2020/6/6 | 
 |  |  | 
 |  |  |     /** | 
 |  |  |      * 物料编码 | 
 |  |  |      */ | 
 |  |  |     @ColumnWidth(24) | 
 |  |  |     @ExcelProperty(value = "物料编码", index = 0) | 
 |  |  |     private String matNo; | 
 |  |  |  | 
 |  |  |     /** | 
 |  |  |      * 条码 | 
 |  |  |      */ | 
 |  |  |     @ColumnWidth(12) | 
 |  |  |     @ExcelProperty(value = "条码", index = 1) | 
 |  |  |     private String barcode; | 
 |  |  |  | 
 |  |  |     /** | 
 |  |  |      * 物料名称 | 
 |  |  |      */ | 
 |  |  |     @ColumnWidth(36) | 
 |  |  |     @ExcelProperty(value = "物料名称", index = 2) | 
 |  |  |     private String matName; | 
 |  |  |  | 
 |  |  |     /** | 
 |  |  |      * 物料单位 | 
 |  |  |      */ | 
 |  |  |     @ColumnWidth(10) | 
 |  |  |     @ExcelProperty(value = "物料单位", index = 3) | 
 |  |  |     private String str1; | 
 |  |  |  |