DiseaseDeptDTO.java 937 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768
  1. package com.diagbot.dto;
  2. import lombok.Getter;
  3. import lombok.Setter;
  4. /**
  5. * @Description:
  6. * @Author:zhaops
  7. * @time: 2020/3/20 17:17
  8. */
  9. @Getter
  10. @Setter
  11. public class DiseaseDeptDTO {
  12. /**
  13. * 医院编码
  14. */
  15. private String hospitalCode;
  16. /**
  17. * HIS疾病名称
  18. */
  19. private String diseaseName;
  20. /**
  21. * icd10编码
  22. */
  23. private String icd10Code;
  24. /**
  25. * icd10名称
  26. */
  27. private String icd10Name;
  28. /**
  29. * 朗通疾病名称
  30. */
  31. private String conceptDisName;
  32. /**
  33. * 小科室
  34. */
  35. private String subDeptName;
  36. /**
  37. * 小科室编码
  38. */
  39. private String subDeptCode;
  40. /**
  41. * 大科室
  42. */
  43. private String deptName;
  44. /**
  45. * 大科室编码
  46. */
  47. private String deptCode;
  48. /**
  49. * 医院科室地址
  50. */
  51. private String url;
  52. /**
  53. * 建议
  54. */
  55. private String suggestion;
  56. }