InquiryInfo.java 5.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251
  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 rengb
  13. * @since 2018-11-23
  14. */
  15. @TableName("icss_inquiry_info")
  16. public class InquiryInfo 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 hospitalId;
  47. /**
  48. * 科室id
  49. */
  50. private Long hospitalDeptId;
  51. /**
  52. * 医生id
  53. */
  54. private Long doctorId;
  55. /**
  56. * 患者id
  57. */
  58. private Long patientId;
  59. /**
  60. * 就诊序列号
  61. */
  62. private String inquiryCode;
  63. /**
  64. * 就诊状态(0待接诊,1接诊中,2完成接诊)
  65. */
  66. private Integer regVisitedState;
  67. /**
  68. * 分类(1:门诊,2:住院)
  69. */
  70. private Integer type;
  71. /**
  72. * 诊断
  73. */
  74. private String diagnose;
  75. /**
  76. * 类型:0:结构化 1:文本模式
  77. */
  78. private Integer sign;
  79. /**
  80. * 内容JSON字符串
  81. */
  82. private String dataJson;
  83. /**
  84. * 备注
  85. */
  86. private String remark;
  87. public Long getId() {
  88. return id;
  89. }
  90. public void setId(Long id) {
  91. this.id = id;
  92. }
  93. public String getIsDeleted() {
  94. return isDeleted;
  95. }
  96. public void setIsDeleted(String isDeleted) {
  97. this.isDeleted = isDeleted;
  98. }
  99. public Date getGmtCreate() {
  100. return gmtCreate;
  101. }
  102. public void setGmtCreate(Date gmtCreate) {
  103. this.gmtCreate = gmtCreate;
  104. }
  105. public Date getGmtModified() {
  106. return gmtModified;
  107. }
  108. public void setGmtModified(Date gmtModified) {
  109. this.gmtModified = gmtModified;
  110. }
  111. public String getCreator() {
  112. return creator;
  113. }
  114. public void setCreator(String creator) {
  115. this.creator = creator;
  116. }
  117. public String getModifier() {
  118. return modifier;
  119. }
  120. public void setModifier(String modifier) {
  121. this.modifier = modifier;
  122. }
  123. public Long getHospitalId() {
  124. return hospitalId;
  125. }
  126. public void setHospitalId(Long hospitalId) {
  127. this.hospitalId = hospitalId;
  128. }
  129. public Long getHospitalDeptId() {
  130. return hospitalDeptId;
  131. }
  132. public void setHospitalDeptId(Long hospitalDeptId) {
  133. this.hospitalDeptId = hospitalDeptId;
  134. }
  135. public Long getDoctorId() {
  136. return doctorId;
  137. }
  138. public void setDoctorId(Long doctorId) {
  139. this.doctorId = doctorId;
  140. }
  141. public Long getPatientId() {
  142. return patientId;
  143. }
  144. public void setPatientId(Long patientId) {
  145. this.patientId = patientId;
  146. }
  147. public String getInquiryCode() {
  148. return inquiryCode;
  149. }
  150. public void setInquiryCode(String inquiryCode) {
  151. this.inquiryCode = inquiryCode;
  152. }
  153. public Integer getRegVisitedState() {
  154. return regVisitedState;
  155. }
  156. public void setRegVisitedState(Integer regVisitedState) {
  157. this.regVisitedState = regVisitedState;
  158. }
  159. public Integer getType() {
  160. return type;
  161. }
  162. public void setType(Integer type) {
  163. this.type = type;
  164. }
  165. public String getDiagnose() {
  166. return diagnose;
  167. }
  168. public void setDiagnose(String diagnose) {
  169. this.diagnose = diagnose;
  170. }
  171. public Integer getSign() {
  172. return sign;
  173. }
  174. public void setSign(Integer sign) {
  175. this.sign = sign;
  176. }
  177. public String getDataJson() {
  178. return dataJson;
  179. }
  180. public void setDataJson(String dataJson) {
  181. this.dataJson = dataJson;
  182. }
  183. public String getRemark() {
  184. return remark;
  185. }
  186. public void setRemark(String remark) {
  187. this.remark = remark;
  188. }
  189. @Override
  190. public String toString() {
  191. return "InquiryInfo{" +
  192. "id=" + id +
  193. ", isDeleted=" + isDeleted +
  194. ", gmtCreate=" + gmtCreate +
  195. ", gmtModified=" + gmtModified +
  196. ", creator=" + creator +
  197. ", modifier=" + modifier +
  198. ", hospitalId=" + hospitalId +
  199. ", hospitalDeptId=" + hospitalDeptId +
  200. ", doctorId=" + doctorId +
  201. ", patientId=" + patientId +
  202. ", inquiryCode=" + inquiryCode +
  203. ", regVisitedState=" + regVisitedState +
  204. ", type=" + type +
  205. ", diagnose=" + diagnose +
  206. ", sign=" + sign +
  207. ", dataJson=" + dataJson +
  208. ", remark=" + remark +
  209. "}";
  210. }
  211. }