Compare commits
No commits in common. "d2ced1154d1e7c759eb591bb61ebb6fdfa7ee3c1" and "39dcd026c004f6df227677cdb41365f0f8a04fa0" have entirely different histories.
d2ced1154d
...
39dcd026c0
|
@ -99,11 +99,7 @@ public interface DBSportsClient {
|
|||
/**
|
||||
* 拉取订单Json数据
|
||||
*/
|
||||
@Post(url = "/api/bet/queryBetListV2",
|
||||
headers = {
|
||||
"Content-type: application/x-www-form-urlencoded"
|
||||
}
|
||||
)
|
||||
@Post(url = "/api/bet/queryBetListV2")
|
||||
GetBetListResponse getBetList(@Body GetBetListRequest request,
|
||||
@Header("requestId") String requestId);
|
||||
|
||||
|
|
|
@ -67,7 +67,7 @@ public class GetBetListRequest implements Serializable {
|
|||
/**
|
||||
* 请求时间戳(13位,必填)
|
||||
*/
|
||||
private String timestamp = String.valueOf(System.currentTimeMillis());
|
||||
private String timestamp;
|
||||
|
||||
/**
|
||||
* 排序方式(可选)
|
||||
|
|
|
@ -18,10 +18,6 @@ public class GetBetListResponse implements Serializable {
|
|||
private String msg;
|
||||
private String code;
|
||||
private Long serverTime;
|
||||
private DataDTO data;
|
||||
|
||||
@Data
|
||||
public static class DataDTO {
|
||||
|
||||
|
||||
// 当前页码
|
||||
|
@ -32,7 +28,6 @@ public class GetBetListResponse implements Serializable {
|
|||
private Integer totalCount;
|
||||
// 注单列表
|
||||
private List<OrderItemDTO> list;
|
||||
}
|
||||
|
||||
@Data
|
||||
public static class OrderItemDTO {
|
||||
|
|
|
@ -212,7 +212,6 @@ public class DBSportsServiceImpl implements IGamesService {
|
|||
}
|
||||
return exchangeMoney.getId();
|
||||
}
|
||||
|
||||
/**
|
||||
* 获取交易id
|
||||
*
|
||||
|
@ -401,7 +400,7 @@ public class DBSportsServiceImpl implements IGamesService {
|
|||
);
|
||||
|
||||
if (this.isSuccess(response.getCode())) {
|
||||
List<GetBetListResponse.OrderItemDTO> list = response.getData().getList();
|
||||
List<GetBetListResponse.OrderItemDTO> list = response.getList();
|
||||
if (CollectionUtils.isEmpty(list)) {
|
||||
return;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue