| package com.matrix.system.hive.dto; | 
|   | 
| import io.swagger.annotations.ApiModel; | 
| import io.swagger.annotations.ApiModelProperty; | 
| import lombok.Data; | 
|   | 
| import javax.validation.constraints.NotEmpty; | 
| import javax.validation.constraints.NotNull; | 
|   | 
| @Data | 
| @ApiModel(value = "ScoreChangeDto", description = "积分修改参数接收类") | 
| public class ScoreChangeDto { | 
|   | 
|     @NotNull | 
|     @ApiModelProperty(value = "会员id", example = "1") | 
|     private Long  vipId; | 
|   | 
|     @NotNull(message = "调整数量不能为空") | 
|     @ApiModelProperty(value = "调整数量", example = "1") | 
|     private Integer  amount; | 
|   | 
|     @NotEmpty(message = "调整说明不能为空") | 
|     @ApiModelProperty(value = "调整说明", example = "线下兑换") | 
|     private String  remarks; | 
|   | 
| } |