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