|  |  |  | 
|---|
|  |  |  | * 钱包ID | 
|---|
|  |  |  | */ | 
|---|
|  |  |  | @Schema(description = "钱包ID", requiredMode = Schema.RequiredMode.NOT_REQUIRED) | 
|---|
|  |  |  | @NotNull(message = "钱包ID不能为空") | 
|---|
|  |  |  | private Long walletId; | 
|---|
|  |  |  |  | 
|---|
|  |  |  | /** | 
|---|
|  |  |  | 
|---|
|  |  |  | */ | 
|---|
|  |  |  | @Schema(description = "退款金额", requiredMode = Schema.RequiredMode.NOT_REQUIRED) | 
|---|
|  |  |  | @Min(value = 0, message = "消退款金额不能小于0") | 
|---|
|  |  |  | @NotNull(message = "退款金额不能为空") | 
|---|
|  |  |  | //@NotNull(message = "退款金额不能为空") | 
|---|
|  |  |  | private Double refundAmount; | 
|---|
|  |  |  |  | 
|---|
|  |  |  | /** | 
|---|
|  |  |  | 
|---|
|  |  |  | * 审核备注 | 
|---|
|  |  |  | */ | 
|---|
|  |  |  | @Schema(description = "备注", requiredMode = Schema.RequiredMode.NOT_REQUIRED) | 
|---|
|  |  |  | @Length(message = "备注长度小于{max}字", min = 1, max = 200) | 
|---|
|  |  |  | @Length(message = "备注长度小于{max}字", min = 0, max = 200) | 
|---|
|  |  |  | private String remarks; | 
|---|
|  |  |  | } | 
|---|