From 08f1b1f1804a8bd833d42f257908d80e88387b55 Mon Sep 17 00:00:00 2001
From: mitao <2763622819@qq.com>
Date: 星期五, 14 三月 2025 11:27:47 +0800
Subject: [PATCH] 3.5增加登录验证、修改密码、人员列表调整

---
 springcloud_k8s_panzhihuazhihuishequ/service_partybuilding/src/main/java/com/panzhihua/service_dangjian/api/NewFightConvenientMerchantApi.java |   23 +++++++++++++++++++++++
 1 files changed, 23 insertions(+), 0 deletions(-)

diff --git a/springcloud_k8s_panzhihuazhihuishequ/service_partybuilding/src/main/java/com/panzhihua/service_dangjian/api/NewFightConvenientMerchantApi.java b/springcloud_k8s_panzhihuazhihuishequ/service_partybuilding/src/main/java/com/panzhihua/service_dangjian/api/NewFightConvenientMerchantApi.java
index 6963e29..0e2be9c 100644
--- a/springcloud_k8s_panzhihuazhihuishequ/service_partybuilding/src/main/java/com/panzhihua/service_dangjian/api/NewFightConvenientMerchantApi.java
+++ b/springcloud_k8s_panzhihuazhihuishequ/service_partybuilding/src/main/java/com/panzhihua/service_dangjian/api/NewFightConvenientMerchantApi.java
@@ -5,6 +5,7 @@
 import com.panzhihua.service_dangjian.entity.NewFightConvenientMerchant;
 import com.panzhihua.service_dangjian.service.NewFightConvenientMerchantService;
 import lombok.extern.slf4j.Slf4j;
+import org.apache.ibatis.annotations.Param;
 import org.springframework.web.bind.annotation.*;
 
 import javax.annotation.Resource;
@@ -79,4 +80,26 @@
         return merchantService.editData(item);
     }
 
+    @GetMapping("/selectUserList")
+    public R selectUserList(@RequestParam("communityId") String communityId,
+                            @RequestParam("phoneOrname") String phoneOrname)
+    {
+        return merchantService.selectUserList(communityId,phoneOrname);
+    }
+
+    @GetMapping("/selectUserListB")
+    public R selectUserListB(@RequestParam("communityId") String communityId,
+                            @RequestParam("phoneOrname") String phoneOrname)
+    {
+        return merchantService.selectUserListB(communityId,phoneOrname);
+    }
+
+
+    @GetMapping("/selectUserBind")
+    public R selectUserBind(@RequestParam("communityId") String communityId,
+                            @RequestParam("userId") String userId)
+    {
+        return merchantService.selectUserBind(communityId,userId);
+    }
+
 }

--
Gitblit v1.7.1