KKSU
2024-05-11 1971c30f927a84765f4da664a7d9bec8d7a31255
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;
 
}