Helius
2021-03-17 9974b1fffff1cad712b7c30fb4c708ef45ec4b8c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
package com.matrix.system.shopXcx.api.dto;
 
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
 
import javax.validation.constraints.NotNull;
 
@Data
@ApiModel(value = "WithdrawalCashDto", description = "提现参数接收类")
public class WithdrawalCashDto  {
 
    @NotNull(message = "提现金额不能为空")
    @ApiModelProperty(value = "提现金额", example = "1")
    private Double amount;
 
 
 
 
}