bug fix
parent
423d03f416
commit
4d9af7ce8b
|
|
@ -3,6 +3,9 @@ package org.qinan.safetyeval.client.dto;
|
|||
import io.swagger.annotations.ApiModelProperty;
|
||||
import lombok.Data;
|
||||
|
||||
import javax.validation.constraints.NotNull;
|
||||
import javax.validation.constraints.Size;
|
||||
|
||||
/**
|
||||
* 资质审核记录新增命令
|
||||
*
|
||||
|
|
@ -11,21 +14,31 @@ import lombok.Data;
|
|||
@Data
|
||||
public class QualFilingReviewAddCmd {
|
||||
|
||||
// 与库表 filing_id bigint NOT NULL 对齐
|
||||
@ApiModelProperty(value = "备案申请id")
|
||||
@NotNull(message = "备案申请id不能为空")
|
||||
private Long filingId;
|
||||
|
||||
// 与库表 review_result varchar(32) 对齐
|
||||
@ApiModelProperty(value = "审核结果(1通过2待定3不通过)")
|
||||
@Size(max = 32, message = "审核结果不能超过32字")
|
||||
private String reviewResult;
|
||||
|
||||
// 与库表 review_result_remark varchar(255) 对齐
|
||||
@ApiModelProperty(value = "审核结果文字描述")
|
||||
@Size(max = 255, message = "审核结果文字描述不能超过255字")
|
||||
private String reviewResultRemark;
|
||||
|
||||
@ApiModelProperty(value = "专家id")
|
||||
private Long filingExpertId;
|
||||
|
||||
// 与库表 filing_expert_name varchar(255) 对齐
|
||||
@ApiModelProperty(value = "专家名称")
|
||||
@Size(max = 255, message = "专家名称不能超过255字")
|
||||
private String filingExpertName;
|
||||
|
||||
// 与库表 review_opinion varchar(512) 对齐
|
||||
@ApiModelProperty(value = "综合审核意见")
|
||||
@Size(max = 512, message = "综合审核意见不能超过512字")
|
||||
private String reviewOpinion;
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in New Issue