Helius
2021-05-21 dc7bd3021d9a3b2dbd87776ba1405aad9798931c
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.contract.parameter.dto;
 
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
 
/**
 * @author wzy
 * @date 2020-06-03
 **/
@Data
@ApiModel(value = "SymbolDto", description = "币种dto")
public class SymbolDto {
 
    @ApiModelProperty(value = "币种", example = "BTC/USDT")
    private String symbol;
 
    @ApiModelProperty(hidden = true)
    private Integer type;
}