QwExternalContactInfo.java 3.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148
  1. package com.fs.qw.domain;
  2. import com.fs.common.annotation.Excel;
  3. import com.fs.common.core.domain.BaseEntity;
  4. import lombok.Data;
  5. /**
  6. * 外部联系人信息对象 qw_external_contact_info
  7. *
  8. * @author fs
  9. * @date 2024-11-23
  10. */
  11. @Data
  12. public class QwExternalContactInfo extends BaseEntity
  13. {
  14. private static final long serialVersionUID = 1L;
  15. /** id */
  16. private Long id;
  17. /** 外部联系人id */
  18. private Long externalContactId;
  19. /** 姓名 */
  20. @Excel(name = "姓名")
  21. private String name;
  22. /** 性别 */
  23. @Excel(name = "性别")
  24. private String sex;
  25. /** 年龄 */
  26. @Excel(name = "年龄")
  27. private String age;
  28. /** 地区 */
  29. @Excel(name = "地区")
  30. private String address;
  31. /** 行为习惯 */
  32. @Excel(name = "行为习惯")
  33. private String habits;
  34. /** 患病时间 */
  35. @Excel(name = "患病时间")
  36. private String illnessTime;
  37. /** 身体状态 */
  38. @Excel(name = "身体状态")
  39. private String body;
  40. /** 学习到的章节 */
  41. @Excel(name = "学习到的章节")
  42. private String study;
  43. /** 今日课程完成情况 */
  44. @Excel(name = "今日课程完成情况")
  45. private String courseStatus;
  46. /** 提及的家人 */
  47. @Excel(name = "提及的家人")
  48. private String family;
  49. /** 家人的疾病 */
  50. @Excel(name = "家人的疾病")
  51. private String familyDisease;
  52. /** 交流状态 */
  53. @Excel(name = "交流状态")
  54. private String talk;
  55. /** 用户分类 */
  56. @Excel(name = "用户分类")
  57. private String userType;
  58. /** 是否本人会诊 */
  59. @Excel(name = "是否本人会诊")
  60. private String isSelf;
  61. /** 什么情况加重或缓解 */
  62. @Excel(name = "什么情况加重或缓解")
  63. private String intensify;
  64. /** 是否怕热或者怕冷 */
  65. @Excel(name = "是否怕热或者怕冷")
  66. private String isCold;
  67. /** 怕冷或怕热的部位 */
  68. @Excel(name = "怕冷或怕热的部位")
  69. private String coldBody;
  70. /** 出汗情况 */
  71. @Excel(name = "出汗情况")
  72. private String sweat;
  73. /** 其他情况 */
  74. @Excel(name = "其他情况")
  75. private String other;
  76. /** 大小便情况 */
  77. @Excel(name = "大小便情况")
  78. private String toilet;
  79. /** 饮食情况 */
  80. @Excel(name = "饮食情况")
  81. private String eat;
  82. /** 经期如何 女 55岁以下 */
  83. @Excel(name = "经期如何 女 55岁以下")
  84. private String menses;
  85. /** 用药 */
  86. @Excel(name = "用药")
  87. private String medicine;
  88. /** 体质 */
  89. @Excel(name = "体质")
  90. private String constitution;
  91. /** 推荐用药 */
  92. @Excel(name = "推荐用药")
  93. private String recommendMedicine;
  94. /** 咨询产品 */
  95. @Excel(name = "咨询产品")
  96. private String consultProduct;
  97. /** 是否已经购买产品 */
  98. @Excel(name = "是否已经购买产品")
  99. private String isBuy;
  100. /** 已经购买的产品 */
  101. @Excel(name = "已经购买的产品")
  102. private String buyProduct;
  103. @Excel(name = "疾病")
  104. private String disease;
  105. @Excel(name = "是否线下就诊")
  106. private String isLine;
  107. @Excel(name = "学习课程")
  108. private String course;
  109. @Excel(name = "产品交流")
  110. private String productTalk;
  111. @Excel(name = "疾病交流")
  112. private String diseaseTalk;
  113. }