Administrator
2025-12-15 2e6cbd3ee1c2d7e1aa73f4392c79bfbfacbcb67d
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;
}