xiaoyong931011
2020-08-05 06643cf41d88a6b409fa666b4bfa95d3b8561cfd
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
package com.xcong.excoin.modules.documentary.vo;
 
import java.math.BigDecimal;
 
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
 
@Data
@ApiModel(value = "DocumentaryOrderInfoVo", description = "参数返回类")
public class DocumentaryOrderInfoVo {
    
    @ApiModelProperty("币种")
    private String symbol;
    
    @ApiModelProperty("杠杆")
    private int levelRate;
    
    @ApiModelProperty("可用余额")
    private BigDecimal avaliableCoin;
 
}