KKSU
2024-04-28 673d9890158a00c42a0cb187d7f40b599d272da9
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;
 
}