Helius
2022-08-09 ae50866f34212c007643c1744f78426676885c08
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
package cc.mrbird.febs.dapp.dto;
 
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import io.swagger.annotations.ApiOperation;
import lombok.Data;
 
import java.math.BigDecimal;
 
/**
 * @author 
 * @date 2022-03-18
 **/
@Data
@ApiModel(value = "WalletOperateDto", description = "钱包操作参数接收类")
public class WalletOperateDto {
 
    @ApiModelProperty(value = "金额", example = "1")
    private BigDecimal amount;
}