MainDataEntity.java 7.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290
  1. package com.wdkl.callingbed2.entity;
  2. /**
  3. * Created by 胡博文 on 2017/9/5.
  4. * <p>
  5. * 病人的个人信息 (Waderson)
  6. */
  7. public class MainDataEntity {
  8. private String hospital;
  9. private String departments;
  10. private String leftOneTitle;
  11. private String leftTwoTitle;
  12. private String leftThreeTitle;
  13. private String leftFourTitle;
  14. private String leftFiveTitle;
  15. private String leftOneColor;
  16. private String leftTwoColor;
  17. private String leftThreeColor;
  18. private String leftFourColor;
  19. private String leftFiveColor;
  20. private String leftOneContent;
  21. private String leftTwoContent;
  22. private String leftThreeContent;
  23. private String leftFourContent;
  24. private String leftFiveContent;
  25. private String inpatientNum;
  26. private String name;
  27. private String sex;
  28. private String ageNum;
  29. private String ageUnit;
  30. private String illness;
  31. private String admissionTime;
  32. private String responsDoctor;
  33. private String responsDoctorPic;
  34. private String responsNurse;
  35. private String responsNursePic;
  36. private String qrCodeSwitch;
  37. private String Code;
  38. private String nurseLevel;//护理等级 (add by Waderson 2017-10-31)
  39. public void setHospital(String hospital) {
  40. this.hospital = hospital;
  41. }
  42. public String getHospital() {
  43. return hospital == null ? "暂无" : hospital;
  44. }
  45. public void setDepartments(String departments) {
  46. this.departments = departments;
  47. }
  48. public String getDepartments() {
  49. return departments == null ? "暂无" : departments;
  50. }
  51. public void setLeftOneTitle(String leftOneTitle) {
  52. this.leftOneTitle = leftOneTitle;
  53. }
  54. public String getLeftOneTitle() {
  55. return leftOneTitle == null ? "暂无" : leftOneTitle;
  56. }
  57. public void setLeftTwoTitle(String leftTwoTitle) {
  58. this.leftTwoTitle = leftTwoTitle;
  59. }
  60. public String getLeftTwoTitle() {
  61. return leftTwoTitle == null ? "暂无" : leftTwoTitle;
  62. }
  63. public void setLeftThreeTitle(String leftThreeTitle) {
  64. this.leftThreeTitle = leftThreeTitle;
  65. }
  66. public String getLeftThreeTitle() {
  67. return leftThreeTitle == null ? "暂无" : leftThreeTitle;
  68. }
  69. public void setLeftFourTitle(String leftFourTitle) {
  70. this.leftFourTitle = leftFourTitle;
  71. }
  72. public String getLeftFourTitle() {
  73. return leftFourTitle == null ? "暂无" : leftFourTitle;
  74. }
  75. public void setLeftFiveTitle(String leftFiveTitle) {
  76. this.leftFiveTitle = leftFiveTitle;
  77. }
  78. public String getLeftFiveTitle() {
  79. return leftFiveTitle == null ? "暂无" : leftFiveTitle;
  80. }
  81. public void setLeftOneColor(String leftOneColor) {
  82. this.leftOneColor = leftOneColor;
  83. }
  84. public String getLeftOneColor() {
  85. return leftOneColor == null ? "B8B8B8" : leftOneColor;
  86. }
  87. public void setLeftTwoColor(String leftTwoColor) {
  88. this.leftTwoColor = leftTwoColor;
  89. }
  90. public String getLeftTwoColor() {
  91. return leftTwoColor == null ? "B8B8B8" : leftTwoColor;
  92. }
  93. public void setLeftThreeColor(String leftThreeColor) {
  94. this.leftThreeColor = leftThreeColor;
  95. }
  96. public String getLeftThreeColor() {
  97. return leftThreeColor == null ? "B8B8B8" : leftThreeColor;
  98. }
  99. public void setLeftFourColor(String leftFourColor) {
  100. this.leftFourColor = leftFourColor;
  101. }
  102. public String getLeftFourColor() {
  103. return leftFourColor == null ? "B8B8B8" : leftFourColor;
  104. }
  105. public void setLeftFiveColor(String leftFiveColor) {
  106. this.leftFiveColor = leftFiveColor;
  107. }
  108. public String getLeftFiveColor() {
  109. return leftFiveColor == null ? "B8B8B8" : leftFiveColor;
  110. }
  111. public void setLeftOneContent(String leftOneContent) {
  112. this.leftOneContent = leftOneContent;
  113. }
  114. public String getLeftOneContent() {
  115. return leftOneContent == null ? "暂无" : leftOneContent;
  116. }
  117. public void setLeftTwoContent(String leftTwoContent) {
  118. this.leftTwoContent = leftTwoContent;
  119. }
  120. public String getLeftTwoContent() {
  121. return leftTwoContent == null ? "暂无" : leftTwoContent;
  122. }
  123. public void setLeftThreeContent(String leftThreeContent) {
  124. this.leftThreeContent = leftThreeContent;
  125. }
  126. public String getLeftThreeContent() {
  127. return leftThreeContent == null ? "暂无" : leftThreeContent;
  128. }
  129. public void setLeftFourContent(String leftFourContent) {
  130. this.leftFourContent = leftFourContent;
  131. }
  132. public String getLeftFourContent() {
  133. return leftFourContent == null ? "暂无" : leftFourContent;
  134. }
  135. public void setLeftFiveContent(String leftFiveContent) {
  136. this.leftFiveContent = leftFiveContent;
  137. }
  138. public String getLeftFiveContent() {
  139. return leftFiveContent == null ? "暂无" : leftFiveContent;
  140. }
  141. public void setInpatientNum(String inpatientNum) {
  142. this.inpatientNum = inpatientNum;
  143. }
  144. public String getInpatientNum() {
  145. return inpatientNum == null ? "暂无" : inpatientNum;
  146. }
  147. public void setName(String name) {
  148. this.name = name;
  149. }
  150. public String getName() {
  151. return name == null ? "暂无" : name;
  152. }
  153. public void setSex(String sex) {
  154. this.sex = sex;
  155. }
  156. public String getSex() {
  157. return sex == null ? "暂无" : sex;
  158. }
  159. public void setAgeNum(String ageNum) {
  160. this.ageNum = ageNum;
  161. }
  162. public String getAgeNum() {
  163. return ageNum == null ? "0" : ageNum;
  164. }
  165. public void setAgeUnit(String ageUnit) {
  166. this.ageUnit = ageUnit;
  167. }
  168. public String getAgeUnit() {
  169. return ageUnit == null ? "暂无" : ageUnit;
  170. }
  171. public void setIllness(String illness) {
  172. this.illness = illness;
  173. }
  174. public String getIllness() {
  175. return illness == null ? "暂无" : illness;
  176. }
  177. public void setAdmissionTime(String admissionTime) {
  178. this.admissionTime = admissionTime;
  179. }
  180. public String getAdmissionTime() {
  181. return admissionTime == null ? "0" : admissionTime;
  182. }
  183. public void setResponsDoctor(String responsDoctor) {
  184. this.responsDoctor = responsDoctor;
  185. }
  186. public String getResponsDoctor() {
  187. return responsDoctor == null ? "暂无" : responsDoctor;
  188. }
  189. public void setResponsDoctorPic(String responsDoctorPic) {
  190. this.responsDoctorPic = responsDoctorPic;
  191. }
  192. public String getResponsDoctorPic() {
  193. return responsDoctorPic == null ? "暂无" : responsDoctorPic;
  194. }
  195. public void setResponsNurse(String responsNurse) {
  196. this.responsNurse = responsNurse;
  197. }
  198. public String getResponsNurse() {
  199. return responsNurse == null ? "暂无" : responsNurse;
  200. }
  201. public void setQrCodeSwitch(String qrCodeSwitch) {
  202. this.qrCodeSwitch = qrCodeSwitch;
  203. }
  204. public String getQrCodeSwitch() {
  205. return qrCodeSwitch == null ? "暂无" : qrCodeSwitch;
  206. }
  207. public String getResponsNursePic() {
  208. return responsNursePic == null ? "" : responsNursePic;
  209. }
  210. public void setResponsNursePic(String responsNursePic) {
  211. this.responsNursePic = responsNursePic;
  212. }
  213. public void setCode(String Code) {
  214. this.Code = Code;
  215. }
  216. public String getCode() {
  217. return Code == null ? "0" : Code;
  218. }
  219. public String getNurseLevel() {
  220. return nurseLevel == null ? "0" : nurseLevel;
  221. }
  222. public void setNurseLevel(String nurseLevel) {
  223. this.nurseLevel = nurseLevel;
  224. }
  225. }