GetInquiryInnerVO.java 668 B

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. package com.diagbot.vo;
  2. import lombok.Getter;
  3. import lombok.Setter;
  4. import javax.validation.constraints.NotBlank;
  5. /**
  6. * @Description:
  7. * @author: zhoutg
  8. * @time: 2020/2/28 15:46
  9. */
  10. @Getter
  11. @Setter
  12. public class GetInquiryInnerVO {
  13. /**
  14. * 医院名称
  15. */
  16. @NotBlank(message = "请输入医院名称")
  17. private String hospitalCode;
  18. /**
  19. * "证件类型(1:身份证,2:护照,3:病历号)"
  20. */
  21. private Integer idType;
  22. /**
  23. * 证件号
  24. */
  25. private String idNum;
  26. /**
  27. * 数据版本
  28. */
  29. private String remark;
  30. /**
  31. * 限制天数(负数)
  32. */
  33. private Integer dayLimit;
  34. }