From 915803074bba519a3edd25431e5ee878e5fb516a Mon Sep 17 00:00:00 2001
From: feige <feige@qq.com>
Date: 星期三, 17 五月 2023 16:02:09 +0800
Subject: [PATCH] 修改了家庭模块的导出模块,可以选择导出了

---
 ruoyi-admin/src/main/java/com/ruoyi/web/controller/zhang/ZfCollectionController.java |   26 ++++++++++++++++++++++++++
 1 files changed, 26 insertions(+), 0 deletions(-)

diff --git a/ruoyi-admin/src/main/java/com/ruoyi/web/controller/zhang/ZfCollectionController.java b/ruoyi-admin/src/main/java/com/ruoyi/web/controller/zhang/ZfCollectionController.java
index 73aa728..f938ef0 100644
--- a/ruoyi-admin/src/main/java/com/ruoyi/web/controller/zhang/ZfCollectionController.java
+++ b/ruoyi-admin/src/main/java/com/ruoyi/web/controller/zhang/ZfCollectionController.java
@@ -9,6 +9,8 @@
 import com.ruoyi.common.utils.ServletUtils;
 import com.ruoyi.common.utils.poi.ExcelUtil;
 import com.ruoyi.domain.ZfCollection;
+import com.ruoyi.domain.excel.ZfCleanExcelBean;
+import com.ruoyi.domain.excel.ZfCollectionExcelBean;
 import com.ruoyi.service.ZfCollectionService;
 import lombok.extern.slf4j.Slf4j;
 import org.springframework.beans.factory.annotation.Autowired;
@@ -17,6 +19,7 @@
 
 import javax.servlet.http.HttpServletResponse;
 import java.util.Arrays;
+import java.util.Collections;
 import java.util.List;
 
 import static com.ruoyi.common.core.page.TableSupport.PAGE_NUM;
@@ -47,6 +50,16 @@
     }
 
     /**
+     * 鑾峰彇瀵煎叆妯℃澘
+     */
+    @PostMapping("/model")
+    public void getExportModel(HttpServletResponse response){
+        List<ZfCollectionExcelBean> list = Collections.singletonList(new ZfCollectionExcelBean());
+        ExcelUtil<ZfCollectionExcelBean> util = new ExcelUtil<>(ZfCollectionExcelBean.class);
+        util.exportExcel(response,list,"鏀惰棌鑽h獕瀵煎叆妯℃澘");
+    }
+
+    /**
      * 瀵煎嚭鏀惰棌鍜岃崳瑾夎褰曞垪琛�
      */
 //    @PreAuthorize("@ss.hasPermi('system:property:export')")
@@ -59,6 +72,19 @@
         ExcelUtil<ZfCollection> util = new ExcelUtil<>(ZfCollection.class);
         util.exportExcel(response, list, "鏀惰棌鍜岃崳瑾夎褰曟暟鎹�");
     }
+    /**
+     * 瀵煎嚭鏀惰棌鍜岃崳瑾夎褰曞垪琛�
+     */
+//    @PreAuthorize("@ss.hasPermi('system:property:export')")
+    @Log(title = "鏀惰棌鍜岃崳瑾夎褰�", businessType = BusinessType.EXPORT)
+    @PostMapping("/export1/{ids}")
+    public void export(HttpServletResponse response, @PathVariable Long[] ids)
+    {
+        List<ZfCollection> list = zfCollectionService.selectByIds(ids);
+        log.info("瀵煎嚭璁板綍涓�:{}",list);
+        ExcelUtil<ZfCollection> util = new ExcelUtil<>(ZfCollection.class);
+        util.exportExcel(response, list, "鏀惰棌鍜岃崳瑾夎褰曟暟鎹�");
+    }
 //
 
     /**

--
Gitblit v1.9.1