package com.dsh.communityWorldCup.feignclient.other;
|
|
import com.dsh.communityWorldCup.feignclient.other.model.TGame;
|
import org.springframework.cloud.openfeign.FeignClient;
|
import org.springframework.web.bind.annotation.PostMapping;
|
|
/**
|
* @author zhibing.pu
|
* @Date 2024/3/5 10:39
|
*/
|
@FeignClient("mb-cloud-other")
|
public interface GameClient {
|
|
/**
|
* 根据suduid获取游戏数据
|
* @param sutuId
|
* @return
|
*/
|
@PostMapping("/api/game/getTGameBySutuId")
|
TGame getTGameBySutuId(String sutuId);
|
}
|