xiaoyong931011
2022-02-23 0c5bb71fdce5f677b6cc7320795713d599e6f04f
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;
}