WD_PartInfo.cs 7.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6. namespace HNWD.Pregrant.Model
  7. {
  8. public class WD_PartInfo : ModelBase
  9. {
  10. public String ID = "0";
  11. [Nick("hospital")]
  12. public String PART_HOSPITALNAME = string.Empty;
  13. [Nick("departments")]
  14. public String PART_NAME = string.Empty;
  15. public String PART_CODE = string.Empty;
  16. public String PART_CONTENT = string.Empty;
  17. public String PART_ROOMCOUNT = string.Empty;
  18. public String PART_BEDCOUNT = string.Empty;
  19. [Nick("deviceScreamSleep")]
  20. public String PART_SLEEPTIME = string.Empty;
  21. public String PART_DAY_START = string.Empty;
  22. public String PART_DAY_BLIGHT = string.Empty;
  23. public String PART_DAY_SIPVOL = string.Empty;
  24. public String PART_DAY_RINGVOL = string.Empty;
  25. public String PART_DAY_RINGTIMES = string.Empty;
  26. public String PART_DAY_NURSINGLED = string.Empty;
  27. public String PART_DAY_DOORSIPVOL = string.Empty;
  28. public String PART_DAY_BEDSIPVOL = string.Empty;
  29. public String PART_NIGHT_START = string.Empty;
  30. public String PART_NIGHT_BLIGHT = string.Empty;
  31. public String PART_NIGHT_SIPVOL = string.Empty;
  32. public String PART_NIGHT_RINGVOL = string.Empty;
  33. public String PART_NIGHT_RINGTIMES = string.Empty;
  34. public String PART_NIGHT_NURSINGLED = string.Empty;
  35. public String PART_NIGHT_DOORSIPVOL = string.Empty;
  36. public String PART_NIGHT_BEDSIPVOL = string.Empty;
  37. [Nick("deviceCallTimeOut")]
  38. public String PART_SIP_OVERTIME = string.Empty;
  39. public String PART_ERRORPIC = string.Empty;
  40. public String PART_NURSE_LEVEL0 = string.Empty;
  41. public String PART_NURSE_LEVEL1 = string.Empty;
  42. public String PART_NURSE_LEVEL2 = string.Empty;
  43. public String PART_NURSE_LEVEL3 = string.Empty;
  44. public String PART_NURSE_LEVEL4 = string.Empty;
  45. public String PART_DISPLAY_ILLNESS = string.Empty;
  46. public String PART_CODESWITCH = string.Empty;
  47. public String PART_SPECIAL_CARE = string.Empty;
  48. public String PART_PRIMARY_CARE = string.Empty;
  49. public String SIPSEV_IP = string.Empty;
  50. public String SIPSEV_MYSQLUSERNAME = string.Empty;
  51. public String SIPSEV_MYSQLPASSWORD = string.Empty;
  52. public String PART_DATETIME = string.Empty;
  53. /// <summary>
  54. /// 床位信息列表
  55. /// </summary>
  56. [Ignore]
  57. public List<bedInfo> bedInfoList = new List<bedInfo>();
  58. ////////////////////////////////////////////////
  59. ///////////////////////////////////////////////////
  60. //nick
  61. //////////////////////////////////////////////////
  62. //////////////////////////////////////////////////
  63. [Ignore]
  64. public String deviceCallTimeOut = "0";
  65. [Ignore]
  66. public String deviceScreamSleep = "0";
  67. [Ignore]
  68. public String hospital = string.Empty;
  69. [Ignore]
  70. public String departments = string.Empty;
  71. ////////////////////////////////////////////
  72. [Ignore]
  73. public string dayOrNight = string.Empty;
  74. [Ignore]
  75. public String screenLight = string.Empty;
  76. [Ignore]
  77. public String callVoice = string.Empty;
  78. [Ignore]
  79. public String ringlVoice = string.Empty;
  80. [Ignore]
  81. public String DoorSipVol = string.Empty;
  82. [Ignore]
  83. public String ringlVoiceLoop = string.Empty;
  84. [Ignore]
  85. public String nursingLight = string.Empty;
  86. [Ignore]
  87. public String BedSipVol = string.Empty;
  88. [Ignore]
  89. public String CallingTimeOut = string.Empty;
  90. [Ignore]
  91. public String screenExtinguishTime = string.Empty;
  92. ////////////////////////////////////////////////////
  93. ////////////////////////////////////////////////////
  94. //others
  95. [Ignore]
  96. public String wardNum = string.Empty;
  97. [Ignore]
  98. public string babyName = string.Empty;
  99. [Ignore]
  100. public string babySex = string.Empty;
  101. [Ignore]
  102. public string roomByname = string.Empty;
  103. [Ignore]
  104. public List<CarefulMatter> carefulMatter = new List<CarefulMatter>();
  105. [Ignore]
  106. public string avoidCertainFood = string.Empty;
  107. [Ignore]
  108. public String nurseLevel = string.Empty;
  109. /////////////////////////////////////////////
  110. /////////////////////////////////////////////
  111. /////////////////////////////////////////////
  112. //[Ignore]
  113. //public string hospital { get;set;}
  114. //[Ignore]
  115. //public string departments { get;set;}
  116. [Ignore]
  117. public string leftOneTitle = string.Empty;
  118. [Ignore]
  119. public string leftTwoTitle = string.Empty;
  120. [Ignore]
  121. public string leftThreeTitle = string.Empty;
  122. [Ignore]
  123. public string leftFourTitle = string.Empty;
  124. [Ignore]
  125. public string leftFiveTitle = string.Empty;
  126. [Ignore]
  127. public string leftOneColor = string.Empty;
  128. [Ignore]
  129. public string leftTwoColor = string.Empty;
  130. [Ignore]
  131. public string leftThreeColor = string.Empty;
  132. [Ignore]
  133. public string leftFourColor = string.Empty;
  134. [Ignore]
  135. public string leftFiveColor = string.Empty;
  136. [Ignore]
  137. public string leftOneContent = string.Empty;
  138. [Ignore]
  139. public string leftTwoContent = string.Empty;
  140. [Ignore]
  141. public string leftThreeContent = string.Empty;
  142. [Ignore]
  143. public string leftFourContent = string.Empty;
  144. [Ignore]
  145. public string leftFiveContent = string.Empty;
  146. [Ignore]
  147. public string inpatientNum = string.Empty;
  148. [Ignore]
  149. public string name = string.Empty;
  150. [Ignore]
  151. public string sex = string.Empty;
  152. [Ignore]
  153. public string ageNum = string.Empty;
  154. [Ignore]
  155. public string ageUnit = string.Empty;
  156. [Ignore]
  157. public string illness = string.Empty;
  158. [Ignore]
  159. public string admissionTime = string.Empty;
  160. [Ignore]
  161. public string responsDoctor = string.Empty;
  162. [Ignore]
  163. public string responsDoctorPic = string.Empty;
  164. [Ignore]
  165. public string responsNurse = string.Empty;
  166. [Ignore]
  167. public string responsNursePic = string.Empty;
  168. [Ignore]
  169. public string qrCodeSwitch = string.Empty;
  170. ////////////////////////////////
  171. [Ignore]
  172. public string dayBright = string.Empty;
  173. [Ignore]
  174. public string nightbright = string.Empty;
  175. [Ignore]
  176. public string dayRingVol = string.Empty;
  177. [Ignore]
  178. public string nightRightVol = string.Empty;
  179. [Ignore]
  180. public string dayRingTimes = string.Empty;
  181. [Ignore]
  182. public string nightRingTimes = string.Empty;
  183. [Ignore]
  184. public string dayNursingLed = string.Empty;
  185. [Ignore]
  186. public string nightNursingLed = string.Empty;
  187. [Ignore]
  188. public string sipOverTime = string.Empty;
  189. [Ignore]
  190. public string daySipVol = string.Empty;
  191. [Ignore]
  192. public string nightSipVol = string.Empty;
  193. [Ignore]
  194. public string dayDoorSipVol = string.Empty;
  195. [Ignore]
  196. public string dayBedSipVol = string.Empty;
  197. [Ignore]
  198. public string nightDoorSipVol = string.Empty;
  199. [Ignore]
  200. public string nightBedSipVol = string.Empty;
  201. }
  202. }