Cui Zhi Feng
2024-08-28 1681fcf652010ca7e697dea4e5430cf0e5a201ce
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
package com.mzl.flower.dto.request.partner;
 
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
 
import javax.validation.constraints.NotNull;
 
@Data
public class AuditPartnerDTO {
 
    @NotNull(message = "ID不能为空")
    private Long id;
 
    @NotNull(message = "审核结果不能为空")
    @ApiModelProperty(value = "审核结果", example = "Y/N")
    private String result;
 
    @ApiModelProperty(value = "拒绝原因")
    private String rejectReason;
}