From 9f5458b24888bd4ea007528643b25659154b912a Mon Sep 17 00:00:00 2001 From: feige <feige@qq.com> Date: 星期三, 17 五月 2023 09:52:30 +0800 Subject: [PATCH] 对于ZfCleanController,ZfCollectionController,ZfContactController, ZfDoctorController,ZfEconomyController,ZfEquipmentController, ZfEventController,ZfPetController,ZfPetNoteController, ZfPropertyController把对应导入模板请求修改成了post请求,另外把对应的 sheetName进行了修改 --- ruoyi-admin/src/main/java/com/ruoyi/web/controller/zhang/ZfCleanController.java | 12 ++++++++++++ 1 files changed, 12 insertions(+), 0 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 d464645..ed7e7d4 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 @@ -9,6 +9,7 @@ import com.ruoyi.common.utils.ServletUtils; import com.ruoyi.common.utils.poi.ExcelUtil; import com.ruoyi.domain.ZfClean; +import com.ruoyi.domain.excel.ZfCleanExcelBean; import com.ruoyi.service.ZfCleanService; 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 @@ return zfCleanService.selectDataList(zfClean, pageNum, pageSize); } + /** + * 鑾峰彇瀵煎叆妯℃澘 + */ + @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,"淇濇磥鏀剁撼瀵煎叆妯℃澘"); + } + /** * 瀵煎嚭淇濇磥鏀剁撼璁板綍鍒楄〃 -- Gitblit v1.9.1