Administrator
2026-01-04 3e09eb864f92c821b8d69c5110175d7c2382e4df
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
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 ApiAccountBalanceInfoDto {
 
    @ApiModelProperty(value = "apiMessageId", example = "11")
    private Long id;
 
    @ApiModelProperty(value = "币种名称", example = "BTC")
    private String coinName;
}