12345678910111213141516171819202122232425262728293031323334353637383940414243 |
- package com.diagbot.vo;
- import lombok.Getter;
- import lombok.Setter;
- import javax.validation.constraints.NotBlank;
- /**
- * @Description:
- * @author: zhoutg
- * @time: 2020/2/28 15:46
- */
- @Getter
- @Setter
- public class GetInquiryInnerVO {
- /**
- * 医院名称
- */
- @NotBlank(message = "请输入医院名称")
- private String hospitalCode;
- /**
- * "证件类型(1:身份证,2:护照,3:病历号)"
- */
- private Integer idType;
- /**
- * 证件号
- */
- private String idNum;
- /**
- * 数据版本
- */
- private String remark;
- /**
- * 限制天数(负数)
- */
- private Integer dayLimit;
- }
|