Helius
2021-04-01 9a7c84e79faf1b1e197d9556754d041416eb8a22
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
package com.xcong.excoin.modules.coin.parameter.dto;
 
import javax.validation.constraints.NotNull;
 
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
 
@Data
@ApiModel(value = "FindCollectDto", description = "币币自选|取消自选参数接收类")
public class FindCollectDto {
    
    @NotNull(message = "币种")
    @ApiModelProperty(value = "币种", example = "BTC")
    private String symbol;
    
    @NotNull(message = "币币自选")
    @ApiModelProperty(value = "自选标识1:选中0:未选中", example = "1")
    private Integer type;
}