SaveInquiryToHisVO.java 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788
  1. package com.diagbot.vo;
  2. import java.util.List;
  3. import com.diagbot.dto.ConceptIntroduceDTO;
  4. import lombok.Getter;
  5. import lombok.Setter;
  6. /**
  7. * @Description:
  8. * @author: rengb
  9. * @time: 2019/3/18
  10. */
  11. @Getter
  12. @Setter
  13. public class SaveInquiryToHisVO {
  14. /**
  15. * 医院id
  16. */
  17. private Long hospitalId;
  18. /**
  19. * 科室id
  20. */
  21. private Long hospitalDeptId;
  22. /**
  23. * 医生id
  24. */
  25. private Long doctorId;
  26. /**
  27. * 患者id
  28. */
  29. private Long patientId;
  30. /**
  31. * 就诊序列号
  32. */
  33. private String inquiryCode;
  34. /**
  35. * 就诊状态(0待接诊,1接诊中,2完成接诊)
  36. */
  37. private Integer regVisitedState=1;
  38. /**
  39. * 病历分类(1:门诊,2:住院)
  40. */
  41. private Integer type=1;
  42. /**
  43. * 访问的系统类型 1:user-service,2:diagbotman-service,3:uaa-service,4:log-service,5:bi-service,6:knowledge-service,7:feedback-service,8:icss-web
  44. */
  45. private Integer sysType;
  46. /**
  47. * 诊断
  48. */
  49. private String diagnose;
  50. /**
  51. * 内容JSON字符串
  52. */
  53. private String dataJson;
  54. /**
  55. * 问诊明细
  56. */
  57. private List<SaveInquiryToHisDetailVO> detailList;
  58. /**
  59. * 一般治疗
  60. */
  61. private List<ConceptIntroduceDTO> conceptIntroduceDTO;
  62. /**
  63. * 生命体征
  64. */
  65. private String vitalSigns;
  66. /**
  67. * 除去生命体征的体格检查
  68. */
  69. private String physicalExcVs;
  70. }