fei
5 天以前 07a2f9c762efb3be3a29e2e8cc7004d4164cc9d8
ruoyi-common/src/main/java/com/ruoyi/common/utils/poi/ExcelExp.java
@@ -12,14 +12,41 @@
    private Class clazz;
    private String recordId;  //档案号
    public String getIos5() {
        return ios5;
    }
    public void setIos5(String ios5) {
        this.ios5 = ios5;
    }
    private String ios5; //ios编号
    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) {
    public ExcelExp(String fileName, String iso5, List dataset, Class clazz) {
        this.fileName = fileName;
        this.ios5 = iso5;
        this.dataset = dataset;
        this.clazz = clazz;
    }
    public ExcelExp(String fileName, List dataset, String recordId, byte[] imgr, Class clazz) {
        this.fileName = fileName;
        this.dataset = dataset;
@@ -28,6 +55,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;
    }