From dd556df997e268153bf1a74616f49b25db11ed3f Mon Sep 17 00:00:00 2001
From: liujie <1793218484@qq.com>
Date: 星期五, 08 八月 2025 15:37:35 +0800
Subject: [PATCH] 赛事模块

---
 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