wzy
2020-06-06 a9b1cf2af50878d2d97fcb5a98bdce17765d9e67
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;
}