hospital.cs 1.0 KB

1234567891011121314151617181920212223242526272829303132
  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 hospital : ModelBase
  9. {
  10. public string patientNum = "0";
  11. public string freeBeds = "0";
  12. public string admissionToday = "0";
  13. public string dischargedToday = "0";
  14. public string dischargeTomorrow = "0";
  15. public string operationToday = "0";
  16. public string operationTomorrow = "0";
  17. public string specialCare = "0";
  18. public string primaryCare = "0";
  19. public List<string> dutyDoctorList = new List<string>();
  20. public List<string> nurseOnDutyList = new List<string>();
  21. public List<string> importantMessageList = new List<string>();
  22. /// <summary>
  23. /// 吸氧人数
  24. /// </summary>
  25. public string oxygenUptake = "30";
  26. public List<WD_StaffInfo> dutyDoctorsList = new List<WD_StaffInfo>();
  27. public List<WD_StaffInfo> nursesOnDutyList = new List<WD_StaffInfo>();
  28. }
  29. }