无关风月
2025-04-11 1d9f7b0cf4251f3058badb07dd7a2bc06b6bc09a
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
package com.dsh.other.feignclient.communityWorldCup;
 
import com.dsh.other.feignclient.communityWorldCup.model.WorldCupStore;
import org.springframework.cloud.openfeign.FeignClient;
import org.springframework.web.bind.annotation.PostMapping;
 
import java.util.List;
 
/**
 * @author zhibing.pu
 * @Date 2024/2/27 17:43
 */
@FeignClient("mb-cloud-communityWorldCup")
public interface WorldCupStoreClient {
 
 
    /**
     * 根据门店id获取世界杯
     * @param storeId 门店id
     * @return
     */
    @PostMapping("/worldCup/getWorldCupStoreList")
    List<WorldCupStore> getWorldCupStoreList(Integer storeId);
}