自动化立体仓库 - WMS系统
#
luxiaotao1123
2020-06-27 aa7c4ba35f1201615c18e47e54899a873eea28d3
src/main/java/com/zy/common/utils/excel/matcode/MatCodeExcel.java
@@ -1,6 +1,7 @@
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
@@ -10,32 +11,31 @@
    /**
     * 物料编码
     */
    @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;
    /**
     * 物料规格
     */
    @ExcelProperty(value = "物料规格", index = 4)
    private String str2;
    public String getMatNo() {
        return matNo;
@@ -69,11 +69,4 @@
        this.str1 = str1;
    }
    public String getStr2() {
        return str2;
    }
    public void setStr2(String str2) {
        this.str2 = str2;
    }
}