PatientInfoDTO.java 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114
  1. package com.diagbot.dto;
  2. import lombok.Getter;
  3. import lombok.Setter;
  4. import java.util.Date;
  5. /**
  6. * @Description:
  7. * @author: wangyu
  8. * @time: 2018/11/19 13:05
  9. */
  10. @Getter
  11. @Setter
  12. public class PatientInfoDTO {
  13. /**
  14. * 主键
  15. */
  16. private Long id;
  17. /**
  18. * 医院编码
  19. */
  20. private String hospitalCode;
  21. /**
  22. * 医院患者编号
  23. */
  24. private String code;
  25. /**
  26. * 患者姓名
  27. */
  28. private String name;
  29. /**
  30. * 性别
  31. */
  32. private Integer sex;
  33. /**
  34. * 出生日期
  35. */
  36. private Date birthday;
  37. /**
  38. * 证件类型
  39. */
  40. private String idType;
  41. /**
  42. * 证件号码
  43. */
  44. private String idNo;
  45. /**
  46. * 家庭住址
  47. */
  48. private String address;
  49. /**
  50. * 联系电话
  51. */
  52. private String phone;
  53. /**
  54. * 身份证号
  55. */
  56. private String identityNum;
  57. /**
  58. * 家庭邮编
  59. */
  60. private String postcode;
  61. /**
  62. * 联系人
  63. */
  64. private String contacts;
  65. /**
  66. * 联系人电话
  67. */
  68. private String contactPhone;
  69. /**
  70. * 就职单位名称
  71. */
  72. private String workUnit;
  73. /**
  74. * 职业
  75. */
  76. private String operation;
  77. /**
  78. * 国籍
  79. */
  80. private String country;
  81. /**
  82. * 民族
  83. */
  84. private String nationality;
  85. /**
  86. * 婚姻状况:0未婚,1已婚,2未知
  87. */
  88. private Integer matrimony;
  89. /**
  90. * 备注
  91. */
  92. private String remark;
  93. }