Helius
2021-03-30 ecef817ae72967e5ffd935d730871ad049db679a
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;
}