From dc194fb281e0e4c4ec34549adb4ad11f3cb67b35 Mon Sep 17 00:00:00 2001 From: whywhyo <1511349576@qq.com> Date: 星期一, 05 六月 2023 20:13:30 +0800 Subject: [PATCH] 123 --- ruoyi-admin/src/main/java/com/ruoyi/web/controller/zhang/ZfCollectionController.java | 21 +++++++++++++++++++++ 1 files changed, 21 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 0e4539c..9884102 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 @@ -50,6 +50,14 @@ } /** + * 鏍规嵁id鏌ヨ + */ + @GetMapping() + public AjaxResult listById(Long id){ + return AjaxResult.success(zfCollectionService.getById(id)); + } + + /** * 鑾峰彇瀵煎叆妯℃澘 */ @PostMapping("/model") @@ -72,6 +80,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