fei
昨天 af47b774448bfa3ece4741664ce4d24128c8f629
ruoyi-common/src/main/java/com/ruoyi/common/utils/poi/ExcelExp.java
@@ -13,12 +13,21 @@
    private String recordId;  //档案号
    private byte[] imgr; //条形码
    public byte[] getSedcode() {
        return sedcode;
    }
    public void setSedcode(byte[] sedcode) {
        this.sedcode = sedcode;
    }
    private byte[] sedcode; //二维码
    public ExcelExp(String fileName, List dataset, Class clazz) {
        this.fileName = fileName;
        this.dataset = dataset;
        this.clazz = clazz;
    }
    public ExcelExp(String fileName, List dataset, String recordId, byte[] imgr,Class clazz) {
        this.fileName = fileName;
@@ -28,6 +37,16 @@
        this.imgr = imgr;
    }
    public ExcelExp(String fileName, List dataset, String recordId, byte[] imgr,byte[] sedcode, Class clazz) {
        this.fileName = fileName;
        this.dataset = dataset;
        this.clazz = clazz;
        this.recordId = recordId;
        this.imgr = imgr;
        this.sedcode = sedcode;
    }
    public String getFileName() {
        return fileName;
    }