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.
19 lines
356 B
Java
19 lines
356 B
Java
2 years ago
|
package com.supervision.pojo.vo;
|
||
|
|
||
|
import lombok.Data;
|
||
|
|
||
|
import javax.validation.constraints.NotBlank;
|
||
|
|
||
|
@Data
|
||
|
public class AskPhysicalResultReqVO {
|
||
|
|
||
|
@NotBlank(message = "体格检查工具名称不能为空")
|
||
|
private String toolName;
|
||
|
|
||
|
private String locationName;
|
||
|
|
||
|
@NotBlank(message = "流程ID不能为空")
|
||
|
private String processId;
|
||
|
|
||
|
}
|