zyy
2025-10-29 8371a803fea42f54cfaba38e8cd8c847d7ee97f7
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;
 
}