| package cc.mrbird.febs.mall.dto; | 
|   | 
| import io.swagger.annotations.ApiModel; | 
| import io.swagger.annotations.ApiModelProperty; | 
| import lombok.Data; | 
|   | 
| import javax.validation.constraints.NotNull; | 
| import java.math.BigDecimal; | 
|   | 
| /** | 
|  * @author wzy | 
|  * @date 2022-05-05 | 
|  **/ | 
| @Data | 
| @ApiModel(value = "CommissionChangeDto", description = "佣金划转参数接收类") | 
| public class CommissionChangeDto { | 
|   | 
|     @ApiModelProperty(value = "划转金额", example = "100") | 
|     @NotNull(message = "请输入划转金额") | 
|     private BigDecimal amount; | 
|   | 
|     @ApiModelProperty(value = "类型 1-to余额 2-to竞猜积分", example = "1") | 
|     @NotNull(message = "参数错误") | 
|     private Integer type; | 
| } |