From 07a2f9c762efb3be3a29e2e8cc7004d4164cc9d8 Mon Sep 17 00:00:00 2001
From: fei <791364011@qq.com>
Date: 星期一, 22 十二月 2025 20:15:58 +0800
Subject: [PATCH] 修改了对应代码
---
ruoyi-common/src/main/java/com/ruoyi/common/utils/poi/ExcelExp.java | 39 ++++++++++++++++++++++++++++++++++++++-
1 files changed, 38 insertions(+), 1 deletions(-)
diff --git a/ruoyi-common/src/main/java/com/ruoyi/common/utils/poi/ExcelExp.java b/ruoyi-common/src/main/java/com/ruoyi/common/utils/poi/ExcelExp.java
index 099198f..83b48a9 100644
--- a/ruoyi-common/src/main/java/com/ruoyi/common/utils/poi/ExcelExp.java
+++ b/ruoyi-common/src/main/java/com/ruoyi/common/utils/poi/ExcelExp.java
@@ -12,14 +12,41 @@
private Class clazz;
private String recordId; //妗f鍙�
+
+ 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;
}
--
Gitblit v1.9.1