package com.dsh.account.feignclient.other;
|
|
import com.dsh.account.feignclient.other.model.GetTGameRecord;
|
import com.dsh.account.feignclient.other.model.TGameRecord;
|
import org.springframework.cloud.openfeign.FeignClient;
|
import org.springframework.web.bind.annotation.PostMapping;
|
|
import java.util.List;
|
|
/**
|
* @author zhibing.pu
|
* @date 2024/3/21 14:24
|
*/
|
@FeignClient("mb-cloud-other")
|
public interface GameRecordClient {
|
|
|
@PostMapping("/base/game/getTGameRecord")
|
List<TGameRecord> getTGameRecord(GetTGameRecord getTGameRecord);
|
}
|