Administrator
2025-12-13 9a6329694004f5aa00a6ae7bc74923e77bdc38a0
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;
}