| package com.mzl.flower.dto.request.supplier; | 
|   | 
| import io.swagger.annotations.ApiModelProperty; | 
| import lombok.Data; | 
|   | 
| import javax.validation.constraints.NotNull; | 
|   | 
| @Data | 
| public class AuditSupplierDTO { | 
|   | 
|     @NotNull(message = "ID不能为空") | 
|     private Long id; | 
|   | 
|     @NotNull(message = "审核结果不能为空") | 
|     @ApiModelProperty(value = "审核结果", example = "Y/N") | 
|     private String result; | 
|   | 
|     @ApiModelProperty(value = "拒绝原因") | 
|     private String rejectReason; | 
| } |