From e15c73ef6313c335d31173f2b14be3843e786156 Mon Sep 17 00:00:00 2001 From: whywhyo <1511349576@qq.com> Date: 星期二, 23 五月 2023 18:12:24 +0800 Subject: [PATCH] 456 --- ruoyi-admin/src/main/java/com/ruoyi/web/controller/zhang/ZfPetController.java | 27 ++++++++++++++++++++++++++- 1 files changed, 26 insertions(+), 1 deletions(-) diff --git a/ruoyi-admin/src/main/java/com/ruoyi/web/controller/zhang/ZfPetController.java b/ruoyi-admin/src/main/java/com/ruoyi/web/controller/zhang/ZfPetController.java index 7096e0b..d923814 100644 --- a/ruoyi-admin/src/main/java/com/ruoyi/web/controller/zhang/ZfPetController.java +++ b/ruoyi-admin/src/main/java/com/ruoyi/web/controller/zhang/ZfPetController.java @@ -9,6 +9,7 @@ import com.ruoyi.common.utils.ServletUtils; import com.ruoyi.common.utils.poi.ExcelUtil; import com.ruoyi.domain.ZfPet; +import com.ruoyi.domain.excel.ZfEconomyExcelBean; import com.ruoyi.service.ZfPetService; import lombok.extern.slf4j.Slf4j; import org.springframework.web.bind.annotation.*; @@ -17,6 +18,7 @@ import javax.annotation.Resource; 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; @@ -45,6 +47,16 @@ } /** + * 鑾峰彇瀵煎叆妯℃澘 + */ + @PostMapping("/model") + public void getExportModel(HttpServletResponse response){ + List<ZfPet> list = Collections.singletonList(new ZfPet()); + ExcelUtil<ZfPet> util = new ExcelUtil<>(ZfPet.class); + util.exportExcel(response,list,"榄呭疇璁板綍瀵煎叆妯℃澘"); + } + + /** * 瀵煎嚭榄呭疇璁板綍鍒楄〃 */ // @PreAuthorize("@ss.hasPermi('system:property:export')") @@ -53,6 +65,19 @@ public void export(HttpServletResponse response, ZfPet zfPet) { List<ZfPet> list = zfPetService.selectByCondition(zfPet); + log.info("瀵煎嚭璁板綍涓�:{}",list); + ExcelUtil<ZfPet> util = new ExcelUtil<>(ZfPet.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<ZfPet> list = zfPetService.selectByIds(ids); log.info("瀵煎嚭璁板綍涓�:{}",list); ExcelUtil<ZfPet> util = new ExcelUtil<>(ZfPet.class); util.exportExcel(response, list, "榄呭疇璁板綍鏁版嵁"); @@ -93,7 +118,7 @@ @PostMapping public AjaxResult add(@RequestBody ZfPet zfPet) { - return toAjax(zfPetService.save(zfPet)); + return zfPetService.mySave(zfPet); } /** -- Gitblit v1.9.1