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;
|
| }
|
|