KKSU
2024-05-23 bc5265e2bc4d6a7da6f2dd5d6af6037d05761187
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
package cc.mrbird.febs.dapp.dto;
 
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
 
import java.math.BigDecimal;
 
@Data
@ApiModel(value = "TransferOutDto", description = "转账接口参数类")
public class TransferOutDto {
 
    @ApiModelProperty(value = "类型", example = "1 -代币提现 2-USDT提现")
    private Integer type;
 
    @ApiModelProperty(value = "金额", example = "100")
    private BigDecimal amount;
 
}