StrIllCritically.java 6.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323
  1. package com.diagbot.entity;
  2. import java.io.Serializable;
  3. import java.util.Date;
  4. /**
  5. * <p>
  6. * 病危通知单
  7. * </p>
  8. *
  9. * @author cy
  10. * @since 2020-10-09
  11. */
  12. public class StrIllCritically implements Serializable {
  13. private static final long serialVersionUID = 1L;
  14. /**
  15. * 记录编号
  16. */
  17. private String recId;
  18. /**
  19. * 医院ID
  20. */
  21. private Long hospitalId;
  22. /**
  23. * 病历号
  24. */
  25. private String behospitalCode;
  26. /**
  27. * 姓名
  28. */
  29. private String name;
  30. /**
  31. * 性别
  32. */
  33. private String sex;
  34. /**
  35. * 年龄
  36. */
  37. private String age;
  38. /**
  39. * 床号
  40. */
  41. private String bedNo;
  42. /**
  43. * 科别
  44. */
  45. private String deptName;
  46. /**
  47. * 病历日期
  48. */
  49. private Date recordDate;
  50. /**
  51. * 标题
  52. */
  53. private String recTitle;
  54. /**
  55. * 当前诊断
  56. */
  57. private String currentDiagnosis;
  58. /**
  59. * 病情危重情况
  60. */
  61. private String criticalSituation;
  62. /**
  63. * 患者签名
  64. */
  65. private String patientSign;
  66. /**
  67. * 患者签名时间
  68. */
  69. private Date patientSignDate;
  70. /**
  71. * 医生签名
  72. */
  73. private String doctorSign;
  74. /**
  75. * 医生签名时间
  76. */
  77. private Date doctorSignDate;
  78. /**
  79. * 结构化数据
  80. */
  81. private String wholeData;
  82. /**
  83. * 备注
  84. */
  85. private String remark;
  86. /**
  87. * 是否删除
  88. */
  89. private String isDeleted;
  90. /**
  91. * 记录创建时间
  92. */
  93. private Date gmtCreate;
  94. /**
  95. * 记录修改时间
  96. */
  97. private Date gmtModified;
  98. /**
  99. * 创建人
  100. */
  101. private String creator;
  102. /**
  103. * 修改人
  104. */
  105. private String modifier;
  106. public String getRecId() {
  107. return recId;
  108. }
  109. public void setRecId(String recId) {
  110. this.recId = recId;
  111. }
  112. public Long getHospitalId() {
  113. return hospitalId;
  114. }
  115. public void setHospitalId(Long hospitalId) {
  116. this.hospitalId = hospitalId;
  117. }
  118. public String getBehospitalCode() {
  119. return behospitalCode;
  120. }
  121. public void setBehospitalCode(String behospitalCode) {
  122. this.behospitalCode = behospitalCode;
  123. }
  124. public String getName() {
  125. return name;
  126. }
  127. public void setName(String name) {
  128. this.name = name;
  129. }
  130. public String getSex() {
  131. return sex;
  132. }
  133. public void setSex(String sex) {
  134. this.sex = sex;
  135. }
  136. public String getAge() {
  137. return age;
  138. }
  139. public void setAge(String age) {
  140. this.age = age;
  141. }
  142. public String getBedNo() {
  143. return bedNo;
  144. }
  145. public void setBedNo(String bedNo) {
  146. this.bedNo = bedNo;
  147. }
  148. public String getDeptName() {
  149. return deptName;
  150. }
  151. public void setDeptName(String deptName) {
  152. this.deptName = deptName;
  153. }
  154. public Date getRecordDate() {
  155. return recordDate;
  156. }
  157. public void setRecordDate(Date recordDate) {
  158. this.recordDate = recordDate;
  159. }
  160. public String getRecTitle() {
  161. return recTitle;
  162. }
  163. public void setRecTitle(String recTitle) {
  164. this.recTitle = recTitle;
  165. }
  166. public String getCurrentDiagnosis() {
  167. return currentDiagnosis;
  168. }
  169. public void setCurrentDiagnosis(String currentDiagnosis) {
  170. this.currentDiagnosis = currentDiagnosis;
  171. }
  172. public String getCriticalSituation() {
  173. return criticalSituation;
  174. }
  175. public void setCriticalSituation(String criticalSituation) {
  176. this.criticalSituation = criticalSituation;
  177. }
  178. public String getPatientSign() {
  179. return patientSign;
  180. }
  181. public void setPatientSign(String patientSign) {
  182. this.patientSign = patientSign;
  183. }
  184. public Date getPatientSignDate() {
  185. return patientSignDate;
  186. }
  187. public void setPatientSignDate(Date patientSignDate) {
  188. this.patientSignDate = patientSignDate;
  189. }
  190. public String getDoctorSign() {
  191. return doctorSign;
  192. }
  193. public void setDoctorSign(String doctorSign) {
  194. this.doctorSign = doctorSign;
  195. }
  196. public Date getDoctorSignDate() {
  197. return doctorSignDate;
  198. }
  199. public void setDoctorSignDate(Date doctorSignDate) {
  200. this.doctorSignDate = doctorSignDate;
  201. }
  202. public String getWholeData() {
  203. return wholeData;
  204. }
  205. public void setWholeData(String wholeData) {
  206. this.wholeData = wholeData;
  207. }
  208. public String getRemark() {
  209. return remark;
  210. }
  211. public void setRemark(String remark) {
  212. this.remark = remark;
  213. }
  214. public String getIsDeleted() {
  215. return isDeleted;
  216. }
  217. public void setIsDeleted(String isDeleted) {
  218. this.isDeleted = isDeleted;
  219. }
  220. public Date getGmtCreate() {
  221. return gmtCreate;
  222. }
  223. public void setGmtCreate(Date gmtCreate) {
  224. this.gmtCreate = gmtCreate;
  225. }
  226. public Date getGmtModified() {
  227. return gmtModified;
  228. }
  229. public void setGmtModified(Date gmtModified) {
  230. this.gmtModified = gmtModified;
  231. }
  232. public String getCreator() {
  233. return creator;
  234. }
  235. public void setCreator(String creator) {
  236. this.creator = creator;
  237. }
  238. public String getModifier() {
  239. return modifier;
  240. }
  241. public void setModifier(String modifier) {
  242. this.modifier = modifier;
  243. }
  244. @Override
  245. public String toString() {
  246. return "StrIllCritically{" +
  247. "recId=" + recId +
  248. ", hospitalId=" + hospitalId +
  249. ", behospitalCode=" + behospitalCode +
  250. ", name=" + name +
  251. ", sex=" + sex +
  252. ", age=" + age +
  253. ", bedNo=" + bedNo +
  254. ", deptName=" + deptName +
  255. ", recordDate=" + recordDate +
  256. ", recTitle=" + recTitle +
  257. ", currentDiagnosis=" + currentDiagnosis +
  258. ", criticalSituation=" + criticalSituation +
  259. ", patientSign=" + patientSign +
  260. ", patientSignDate=" + patientSignDate +
  261. ", doctorSign=" + doctorSign +
  262. ", doctorSignDate=" + doctorSignDate +
  263. ", wholeData=" + wholeData +
  264. ", remark=" + remark +
  265. ", isDeleted=" + isDeleted +
  266. ", gmtCreate=" + gmtCreate +
  267. ", gmtModified=" + gmtModified +
  268. ", creator=" + creator +
  269. ", modifier=" + modifier +
  270. "}";
  271. }
  272. }