From 8e27235844b5640441d810e18e5adc863479735b Mon Sep 17 00:00:00 2001
From: whywhyo <1511349576@qq.com>
Date: 星期五, 19 五月 2023 21:41:22 +0800
Subject: [PATCH] Merge branch 'master' of http://47.93.189.255:8099/r/zhangshi_app_backend

---
 ruoyi-admin/src/main/java/com/ruoyi/web/controller/zhang/ZfCleanController.java |   17 +++++++++++++++--
 1 files changed, 15 insertions(+), 2 deletions(-)

diff --git a/ruoyi-admin/src/main/java/com/ruoyi/web/controller/zhang/ZfCleanController.java b/ruoyi-admin/src/main/java/com/ruoyi/web/controller/zhang/ZfCleanController.java
index 3a98096..13e7d7a 100644
--- a/ruoyi-admin/src/main/java/com/ruoyi/web/controller/zhang/ZfCleanController.java
+++ b/ruoyi-admin/src/main/java/com/ruoyi/web/controller/zhang/ZfCleanController.java
@@ -50,11 +50,11 @@
     /**
      * 鑾峰彇瀵煎叆妯℃澘
      */
-    @GetMapping("/model")
+    @PostMapping("/model")
     public void getExportModel(HttpServletResponse response){
         List<ZfCleanExcelBean> list = Collections.singletonList(new ZfCleanExcelBean());
         ExcelUtil<ZfCleanExcelBean> util = new ExcelUtil<>(ZfCleanExcelBean.class);
-        util.exportExcel(response,list,"淇濇磥鏀剁撼璁板綍鏁版嵁");
+        util.exportExcel(response,list,"淇濇磥鏀剁撼瀵煎叆妯℃澘");
     }
 
 
@@ -71,6 +71,19 @@
         ExcelUtil<ZfClean> util = new ExcelUtil<>(ZfClean.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<ZfClean> list = zfCleanService.selectByIds(ids);
+        log.info("瀵煎嚭璁板綍涓�:{}",list);
+        ExcelUtil<ZfClean> util = new ExcelUtil<>(ZfClean.class);
+        util.exportExcel(response, list, "淇濇磥鏀剁撼璁板綍鏁版嵁");
+    }
 
     /**
      * 瀵煎叆淇濇磥鏀剁撼璁板綍鍒楄〃

--
Gitblit v1.9.1