liujie
7 小时以前 281c6016ab0ea5b2eeecb9167d9ee690b6fdac1f
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
package com.ruoyi.system.dto;
 
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
 
import javax.validation.constraints.NotNull;
 
@ApiModel("申请提现Dto")
@Data
public class UserWithdrawalDto {
    @ApiModelProperty(value = "提现金额")
    @NotNull(message = "提现金额不能为空")
    private Double amount;
 
 
 
}