puzhibing
2024-03-21 03bc927fdb8469c1417f75c2a25a06a0d6b1ae61
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
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);
}