From 179c4d64313c9b7572778da4aaaf6c6584fe457d Mon Sep 17 00:00:00 2001 From: mitao <2763622819@qq.com> Date: 星期二, 20 五月 2025 23:48:08 +0800 Subject: [PATCH] 修改文件上传类型限制 --- 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