From 0a8735ea231e331dbad6e5f83e6fab542404be56 Mon Sep 17 00:00:00 2001
From: lidongdong <1459917685@qq.com>
Date: 星期二, 29 八月 2023 16:01:18 +0800
Subject: [PATCH] 新增商家详情接口   修改查询用户信息报错

---
 springcloud_k8s_panzhihuazhihuishequ/common/src/main/java/com/panzhihua/common/service/community/CommunityService.java |   12 ++++++++----
 1 files changed, 8 insertions(+), 4 deletions(-)

diff --git a/springcloud_k8s_panzhihuazhihuishequ/common/src/main/java/com/panzhihua/common/service/community/CommunityService.java b/springcloud_k8s_panzhihuazhihuishequ/common/src/main/java/com/panzhihua/common/service/community/CommunityService.java
index 263a3d3..0f0c409 100644
--- a/springcloud_k8s_panzhihuazhihuishequ/common/src/main/java/com/panzhihua/common/service/community/CommunityService.java
+++ b/springcloud_k8s_panzhihuazhihuishequ/common/src/main/java/com/panzhihua/common/service/community/CommunityService.java
@@ -11616,11 +11616,15 @@
 
 
     @DeleteMapping("/VolunteerMerchant/delete")
-    public R deleteVolunteerMerchant(@RequestParam("pageNum") String id);
+    public R deleteVolunteerMerchant(@RequestParam("id") String id);
 
     @GetMapping("/VolunteerMerchant/getUser")
-    public R volunteerMerchantGetUser(@RequestParam("pageNum") String communityId,
-                                      @RequestParam("pageNum") String userName,
-                                      @RequestParam("pageNum") String userPhone);
+    public R volunteerMerchantGetUser(@RequestParam("communityId") String communityId,
+                                      @RequestParam(value = "userName", required = false) String userName,
+                                      @RequestParam(value = "userPhone", required = false)String userPhone);
+
+
+    @GetMapping("/VolunteerMerchant/getById")
+    public R volunteerMerchantGetById(@RequestParam("id") String id);
 
 }

--
Gitblit v1.7.1