1
zyy
3 days ago a8e2dbcd82859a3f972192c60b95cba4defe1738
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
package com.yami.trading.api.model;
 
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
 
@Data
@ApiModel
public class WithdrawFeeModel  {
 
 
    @ApiModelProperty("渠道 USDT,OTC")
    private  String channel;
 
 
    @ApiModelProperty("提币数量")
    private  double amount;
 
}