Administrator
2025-12-16 6ee948c0a97f2d92814af3cce5d794e7b9d6989b
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;
}