update
This commit is contained in:
parent
175de0e818
commit
a2ca779289
|
@ -4,6 +4,7 @@ import io.swagger.annotations.ApiModelProperty;
|
||||||
import lombok.Data;
|
import lombok.Data;
|
||||||
|
|
||||||
import javax.validation.constraints.NotBlank;
|
import javax.validation.constraints.NotBlank;
|
||||||
|
import javax.validation.constraints.NotNull;
|
||||||
|
|
||||||
@Data
|
@Data
|
||||||
public class AppointStatusRequest {
|
public class AppointStatusRequest {
|
||||||
|
@ -13,6 +14,6 @@ public class AppointStatusRequest {
|
||||||
private String id;
|
private String id;
|
||||||
|
|
||||||
@ApiModelProperty(value = "是否通过",required = true)
|
@ApiModelProperty(value = "是否通过",required = true)
|
||||||
@NotBlank(message = "是否通过不能为空")
|
@NotNull(message = "是否通过不能为空")
|
||||||
private Boolean status;
|
private Boolean status;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue