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 getWorldCupStoreList(Integer storeId); }