优化API
parent
41df01ff1e
commit
0c25972db4
@ -1,20 +1,24 @@
|
||||
package com.supervision.pojo.vo;
|
||||
|
||||
import io.swagger.annotations.ApiModel;
|
||||
import io.swagger.annotations.ApiModelProperty;
|
||||
import lombok.Data;
|
||||
|
||||
import javax.validation.constraints.NotBlank;
|
||||
|
||||
@Data
|
||||
@ApiModel
|
||||
public class AskPhysicalResultReqVO {
|
||||
|
||||
@NotBlank(message = "体格检查工具ID不能为空")
|
||||
@ApiModelProperty("体格检查工具ID")
|
||||
private String toolId;
|
||||
|
||||
@ApiModelProperty("位置编码")
|
||||
private String locationCode;
|
||||
|
||||
@NotBlank(message = "流程ID不能为空")
|
||||
@ApiModelProperty("流程ID")
|
||||
private String processId;
|
||||
|
||||
}
|
||||
|
Loading…
Reference in New Issue