|
@@ -3,6 +3,9 @@ package com.diagbot.vo;
|
|
|
import lombok.Getter;
|
|
|
import lombok.Setter;
|
|
|
|
|
|
+import javax.validation.constraints.NotBlank;
|
|
|
+import javax.validation.constraints.NotNull;
|
|
|
+
|
|
|
/**
|
|
|
* @author wangfeng
|
|
|
* @Description:
|
|
@@ -11,8 +14,10 @@ import lombok.Setter;
|
|
|
@Setter
|
|
|
@Getter
|
|
|
public class QcAbnormalSaveNameVO {
|
|
|
+ @NotBlank(message = "请输入异常描述")
|
|
|
private String description;
|
|
|
- private int status;
|
|
|
+ @NotNull(message = "请输入处理状态")
|
|
|
+ private Integer status;
|
|
|
private String remark;
|
|
|
|
|
|
}
|