From a5b842f1f6ab32f1af39f4bcb7e45217e94db761 Mon Sep 17 00:00:00 2001
From: wlzboy <66905212@qq.com>
Date: 星期六, 25 十月 2025 18:14:44 +0800
Subject: [PATCH] fix:完成任务状态,任务同步,高度同步等工作
---
ruoyi-admin/src/main/java/com/ruoyi/web/controller/system/HospDataController.java | 10 +++++++---
1 files changed, 7 insertions(+), 3 deletions(-)
diff --git a/ruoyi-admin/src/main/java/com/ruoyi/web/controller/system/HospDataController.java b/ruoyi-admin/src/main/java/com/ruoyi/web/controller/system/HospDataController.java
index e8da24b..e498a51 100644
--- a/ruoyi-admin/src/main/java/com/ruoyi/web/controller/system/HospDataController.java
+++ b/ruoyi-admin/src/main/java/com/ruoyi/web/controller/system/HospDataController.java
@@ -27,11 +27,15 @@
/**
* 鎼滅储鍖婚櫌
- * 鏀寔鏍规嵁鍖婚櫌鍚嶇О鎴栧湴鍧�杩涜妯$硦鎼滅储
+ * 鏀寔鏍规嵁鍖婚櫌鍚嶇О銆佸湴鍧�銆佸湴鍩熻繘琛屾ā绯婃悳绱�
+ * @param keyword 鎼滅储鍏抽敭璇嶏紙鍖婚櫌鍚嶇О銆佸湴鍧�銆佺畝绉般�佺渷甯傚尯锛�
+ * @param region 鍦板煙鍏抽敭璇嶏紙鐢ㄤ簬杩囨护鐪佸競鍖猴級
*/
@GetMapping("/search")
- public AjaxResult searchHospitals(@RequestParam(value = "keyword", required = false) String keyword) {
- List<HospData> list = hospDataMapper.searchHospitals(keyword);
+ public AjaxResult searchHospitals(
+ @RequestParam(value = "keyword", required = false) String keyword,
+ @RequestParam(value = "region", required = false) String region) {
+ List<HospData> list = hospDataMapper.searchHospitals(keyword, region);
return success(list);
}
--
Gitblit v1.9.1