Administrator
2025-12-09 249ddecd3afeb12537edfef4d7a127ffe32f7b9f
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
package com.xcong.excoin.modules.okxNewPrice.okxpi.verify.dto;
 
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
 
@Data
@ApiModel(value = "ApiAccountBalanceInfoDto", description = "参数接收类")
public class ApiPositionsInfoDto {
 
    @ApiModelProperty(value = "apiMessageId", example = "11")
    private Long id;
 
    @ApiModelProperty(value = "币种名称", example = "BTC")
    private String coinName;
 
    @ApiModelProperty(value = "交易所名称", example = "OKX")
    private String exchange;
 
    @ApiModelProperty(value = "持仓ID", example = "")
    private String posId;
}