From 8a5b6dedd18a0956ffa8da7ec9ace30b1d8238fc Mon Sep 17 00:00:00 2001 From: 无关风月 <443237572@qq.com> Date: 星期六, 16 八月 2025 18:05:07 +0800 Subject: [PATCH] Merge branch '2.0' of http://120.76.84.145:10101/gitblit/r/java/PlayPai into 2.0 --- cloud-server-communityWorldCup/src/main/java/com/dsh/communityWorldCup/feignclient/other/StoreClient.java | 5 +++++ 1 files changed, 5 insertions(+), 0 deletions(-) diff --git a/cloud-server-communityWorldCup/src/main/java/com/dsh/communityWorldCup/feignclient/other/StoreClient.java b/cloud-server-communityWorldCup/src/main/java/com/dsh/communityWorldCup/feignclient/other/StoreClient.java index 07aeb8b..2105745 100644 --- a/cloud-server-communityWorldCup/src/main/java/com/dsh/communityWorldCup/feignclient/other/StoreClient.java +++ b/cloud-server-communityWorldCup/src/main/java/com/dsh/communityWorldCup/feignclient/other/StoreClient.java @@ -2,6 +2,7 @@ import com.dsh.communityWorldCup.feignclient.other.model.Store; import org.springframework.cloud.openfeign.FeignClient; +import org.springframework.web.bind.annotation.PathVariable; import org.springframework.web.bind.annotation.PostMapping; import java.util.List; @@ -20,4 +21,8 @@ */ @PostMapping("/store/queryStoreById") Store queryStoreById(Integer id); + @PostMapping("/base/getmerchantNumberByOperatorId/{id}") + String getmerchantNumberByOperatorId(@PathVariable("id")Integer id); + @PostMapping("/base/getmerchantNumberAliByOperatorId/{id}") + String getmerchantNumberAliByOperatorId(@PathVariable("id")Integer id); } -- Gitblit v1.7.1