无关风月
2024-09-24 61bbd595ee2bc3c67b40878894dcc07174c6eea6
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);
}