1234567891011121314151617181920212223242526272829303132 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace HNWD.Pregrant.Model
- {
- public class hospital : ModelBase
- {
- public string patientNum = "0";
- public string freeBeds = "0";
- public string admissionToday = "0";
- public string dischargedToday = "0";
- public string dischargeTomorrow = "0";
- public string operationToday = "0";
- public string operationTomorrow = "0";
- public string specialCare = "0";
- public string primaryCare = "0";
- public List<string> dutyDoctorList = new List<string>();
- public List<string> nurseOnDutyList = new List<string>();
- public List<string> importantMessageList = new List<string>();
- /// <summary>
- /// 吸氧人数
- /// </summary>
- public string oxygenUptake = "30";
- public List<WD_StaffInfo> dutyDoctorsList = new List<WD_StaffInfo>();
- public List<WD_StaffInfo> nursesOnDutyList = new List<WD_StaffInfo>();
- }
- }
|