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.
virtual-patient/virtual-patient-web/src/main/java/com/supervision/pojo/vo/AskPhysicalResultReqVO.java

21 lines
436 B
Java

package com.supervision.pojo.vo;
2 years ago
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
import javax.validation.constraints.NotBlank;
@Data
public class AskPhysicalResultReqVO {
2 years ago
@NotBlank(message = "体格检查工具ID不能为空")
private String toolId;
2 years ago
@ApiModelProperty("位置编码")
private String locationCode;
@NotBlank(message = "流程ID不能为空")
private String processId;
}