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