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
23
24
25
26
27
package com.xcong.excoin.modules.okxNewPrice.okxpi.verify.dto;
 
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
 
import javax.validation.constraints.NotNull;
 
@Data
@ApiModel(value = "ApiValidApiMessageDto", description = "API信息参数接收类")
public class ApiValidApiMessageDto {
 
    @NotNull(message = "apiMessageId")
    @ApiModelProperty(value = "apiMessageId", example = "11")
    private Long id;
 
    @NotNull(message = "账户类型不能为空")
    @ApiModelProperty(value = "账户类型:实盘账户-true, 模拟账户-false", example = "false")
    private boolean accountType;
 
    @ApiModelProperty(value = "币种名称", example = "BTC")
    private String coinName;
 
    @ApiModelProperty(value = "交易所", example = "OKX")
    private String exchange;
 
}