From 4502f650f4816e55b5c7bf751ffce3aa0dce72dd Mon Sep 17 00:00:00 2001
From: zqy <2522236926@qq.com>
Date: 星期二, 14 十月 2025 18:13:07 +0800
Subject: [PATCH] 找回密码功能
---
ruoyi-admin/src/main/java/com/ruoyi/web/controller/zhang/ZfDoctorController.java | 33 +++++++++++++++++++--------------
1 files changed, 19 insertions(+), 14 deletions(-)
diff --git a/ruoyi-admin/src/main/java/com/ruoyi/web/controller/zhang/ZfDoctorController.java b/ruoyi-admin/src/main/java/com/ruoyi/web/controller/zhang/ZfDoctorController.java
index 1c14108..9e60a80 100644
--- a/ruoyi-admin/src/main/java/com/ruoyi/web/controller/zhang/ZfDoctorController.java
+++ b/ruoyi-admin/src/main/java/com/ruoyi/web/controller/zhang/ZfDoctorController.java
@@ -46,6 +46,11 @@
return zfDoctorService.selectDoctorList(zfDoctor, pageNum, pageSize);
}
+ @GetMapping("/type")
+ public AjaxResult listType(){
+ return zfDoctorService.listType();
+ }
+
/**
* 鑾峰彇瀵煎叆妯℃澘
*/
@@ -57,25 +62,25 @@
}
-// /**
-// * 瀵煎嚭瀹跺涵灏忓尰鐢熻褰曞垪琛�
-// */
-//// @PreAuthorize("@ss.hasPermi('system:property:export')")
-// @Log(title = "瀹跺涵灏忓尰鐢熻褰�", businessType = BusinessType.EXPORT)
-// @PostMapping("/export")
-// public void export(HttpServletResponse response, ZfDoctor zfDoctor)
-// {
-// List<ZfDoctor> list = zfDoctorService.selectByCondition(zfDoctor);
-// log.info("瀵煎嚭璁板綍涓�:{}",list);
-// ExcelUtil<ZfDoctor> util = new ExcelUtil<>(ZfDoctor.class);
-// util.exportExcel(response, list, "瀹跺涵灏忓尰鐢熻褰曟暟鎹�");
-// }
/**
* 瀵煎嚭瀹跺涵灏忓尰鐢熻褰曞垪琛�
*/
// @PreAuthorize("@ss.hasPermi('system:property:export')")
@Log(title = "瀹跺涵灏忓尰鐢熻褰�", businessType = BusinessType.EXPORT)
- @PostMapping("/export/{ids}")
+ @PostMapping("/export")
+ public void export(HttpServletResponse response, ZfDoctor zfDoctor)
+ {
+ List<ZfDoctor> list = zfDoctorService.selectByCondition(zfDoctor);
+ log.info("瀵煎嚭璁板綍涓�:{}",list);
+ ExcelUtil<ZfDoctor> util = new ExcelUtil<>(ZfDoctor.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<ZfDoctor> list = zfDoctorService.selectByIds(ids);
--
Gitblit v1.9.1