From d1abd1ef9c4b33d4c0fe9c15a43996b2f9f67048 Mon Sep 17 00:00:00 2001
From: whywhyo <1511349576@qq.com>
Date: 星期三, 19 七月 2023 20:38:35 +0800
Subject: [PATCH] 4577

---
 ruoyi-admin/src/main/java/com/ruoyi/web/controller/zhang/ZfCleanController.java |   25 +++++++++++++++++++------
 1 files changed, 19 insertions(+), 6 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 ed7e7d4..5c2fb7a 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
@@ -58,15 +58,28 @@
     }
 
 
+//    /**
+//     * 瀵煎嚭淇濇磥鏀剁撼璁板綍鍒楄〃
+//     */
+////    @PreAuthorize("@ss.hasPermi('system:property:export')")
+//    @Log(title = "淇濇磥鏀剁撼璁板綍", businessType = BusinessType.EXPORT)
+//    @PostMapping("/export")
+//    public void export(HttpServletResponse response, ZfClean zfClean)
+//    {
+//        List<ZfClean> list = zfCleanService.selectByCondition(zfClean);
+//        log.info("瀵煎嚭璁板綍涓�:{}",list);
+//        ExcelUtil<ZfClean> util = new ExcelUtil<>(ZfClean.class);
+//        util.exportExcel(response, list, "淇濇磥鏀剁撼璁板綍鏁版嵁");
+//    }
     /**
      * 瀵煎嚭淇濇磥鏀剁撼璁板綍鍒楄〃
      */
 //    @PreAuthorize("@ss.hasPermi('system:property:export')")
     @Log(title = "淇濇磥鏀剁撼璁板綍", businessType = BusinessType.EXPORT)
-    @PostMapping("/export")
-    public void export(HttpServletResponse response, ZfClean zfClean)
+    @PostMapping("/export/{ids}")
+    public void export(HttpServletResponse response, @PathVariable Long[] ids)
     {
-        List<ZfClean> list = zfCleanService.selectByCondition(zfClean);
+        List<ZfClean> list = zfCleanService.selectByIds(ids);
         log.info("瀵煎嚭璁板綍涓�:{}",list);
         ExcelUtil<ZfClean> util = new ExcelUtil<>(ZfClean.class);
         util.exportExcel(response, list, "淇濇磥鏀剁撼璁板綍鏁版嵁");
@@ -101,7 +114,7 @@
     @PostMapping
     public AjaxResult add(@RequestBody ZfClean zfClean)
     {
-        return zfCleanService.addData2(zfClean);
+        return zfCleanService.addData(zfClean);
     }
 
     /**
@@ -112,7 +125,7 @@
     @PutMapping
     public AjaxResult edit(@RequestBody ZfClean zfClean)
     {
-        return toAjax(zfCleanService.updateById(zfClean));
+        return zfCleanService.updateData(zfClean);
     }
 //
     /**
@@ -123,7 +136,7 @@
     @DeleteMapping("/{ids}")
     public AjaxResult remove(@PathVariable Long[] ids)
     {
-        return toAjax(zfCleanService.removeByIds(Arrays.asList(ids)));
+        return zfCleanService.deleteData(ids);
     }
 
 }

--
Gitblit v1.9.1