You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
28 lines
637 B
Java
28 lines
637 B
Java
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;
|
|
|
|
@ApiModelProperty("初步诊断ID")
|
|
private String primaryId;
|
|
|
|
@NotBlank(message = "流程ID不能为空")
|
|
@ApiModelProperty("流程ID")
|
|
private String processId;
|
|
|
|
}
|