InquiryDetail.java 3.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173
  1. package com.diagbot.entity;
  2. import java.io.Serializable;
  3. import java.util.Date;
  4. import com.baomidou.mybatisplus.annotation.IdType;
  5. import com.baomidou.mybatisplus.annotation.TableId;
  6. import com.baomidou.mybatisplus.annotation.TableName;
  7. /**
  8. * <p>
  9. * 问诊记录-明细表
  10. * </p>
  11. *
  12. * @author gaodm
  13. * @since 2019-06-17
  14. */
  15. @TableName("prec_inquiry_detail")
  16. public class InquiryDetail implements Serializable {
  17. private static final long serialVersionUID = 1L;
  18. /**
  19. * 主键
  20. */
  21. @TableId(value = "id", type = IdType.AUTO)
  22. private Long id;
  23. /**
  24. * 是否删除,N:未删除,Y:删除
  25. */
  26. private String isDeleted;
  27. /**
  28. * 记录创建时间
  29. */
  30. private Date gmtCreate;
  31. /**
  32. * 记录修改时间,如果时间是1970年则表示纪录未修改
  33. */
  34. private Date gmtModified;
  35. /**
  36. * 创建人,0表示无创建人值
  37. */
  38. private String creator;
  39. /**
  40. * 修改人,如果为0则表示纪录未修改
  41. */
  42. private String modifier;
  43. /**
  44. * 问诊记录id
  45. */
  46. private Long inquiryId;
  47. /**
  48. * 类型(1主诉,2现病史,3其他史,4补充内容)
  49. */
  50. private Integer type;
  51. /**
  52. * 内容字符串
  53. */
  54. private String content;
  55. /**
  56. * 内容字符串纯文本
  57. */
  58. private String contentValue;
  59. /**
  60. * 备注
  61. */
  62. private String remark;
  63. public Long getId() {
  64. return id;
  65. }
  66. public void setId(Long id) {
  67. this.id = id;
  68. }
  69. public String getIsDeleted() {
  70. return isDeleted;
  71. }
  72. public void setIsDeleted(String isDeleted) {
  73. this.isDeleted = isDeleted;
  74. }
  75. public Date getGmtCreate() {
  76. return gmtCreate;
  77. }
  78. public void setGmtCreate(Date gmtCreate) {
  79. this.gmtCreate = gmtCreate;
  80. }
  81. public Date getGmtModified() {
  82. return gmtModified;
  83. }
  84. public void setGmtModified(Date gmtModified) {
  85. this.gmtModified = gmtModified;
  86. }
  87. public String getCreator() {
  88. return creator;
  89. }
  90. public void setCreator(String creator) {
  91. this.creator = creator;
  92. }
  93. public String getModifier() {
  94. return modifier;
  95. }
  96. public void setModifier(String modifier) {
  97. this.modifier = modifier;
  98. }
  99. public Long getInquiryId() {
  100. return inquiryId;
  101. }
  102. public void setInquiryId(Long inquiryId) {
  103. this.inquiryId = inquiryId;
  104. }
  105. public Integer getType() {
  106. return type;
  107. }
  108. public void setType(Integer type) {
  109. this.type = type;
  110. }
  111. public String getContent() {
  112. return content;
  113. }
  114. public void setContent(String content) {
  115. this.content = content;
  116. }
  117. public String getContentValue() {
  118. return contentValue;
  119. }
  120. public void setContentValue(String contentValue) {
  121. this.contentValue = contentValue;
  122. }
  123. public String getRemark() {
  124. return remark;
  125. }
  126. public void setRemark(String remark) {
  127. this.remark = remark;
  128. }
  129. @Override
  130. public String toString() {
  131. return "InquiryDetail{" +
  132. "id=" + id +
  133. ", isDeleted=" + isDeleted +
  134. ", gmtCreate=" + gmtCreate +
  135. ", gmtModified=" + gmtModified +
  136. ", creator=" + creator +
  137. ", modifier=" + modifier +
  138. ", inquiryId=" + inquiryId +
  139. ", type=" + type +
  140. ", content=" + content +
  141. ", contentValue=" + contentValue +
  142. ", remark=" + remark +
  143. "}";
  144. }
  145. }