using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace HNWD.Pregrant.Model
{
public class bedDetails : ModelBase
{
///
/// 床头机ID
///
public string bedId { get; set; }
///
/// 床号
///
public string bedNum { get; set; }
///
/// 床号
///
public string bedName { get; set; }
///
/// 托管状态
///
public string trusteeshipState { get; set; }
///
/// 病人ID
///
public string PatientID { get; set; }
///
/// 病人姓名
///
public string patientName { get; set; }
///
/// 病人年龄
///
public string PatientAge { get; set; }
///
/// 病人性别
///
public string patientGender { get; set; }
///
/// 入院时间
///
public string admissionTime { get; set; }
///
/// 责任医生
///
public string attendingDoctor { get; set; }
///
/// 责任护士
///
public string nurseInCharge { get; set; }
///
/// 病情状况/禁忌事项
///
public string Condition { get; set; }
///
///
/// 用药明细
///
public string Medications { get; set; }
///
/// 医嘱事项
///
public string MedicalAdvice { get; set; }
///
/// 护理等级值
///
public string gradeLevel = "0";
///
/// 饮食等级
///
public string DietLevel = "0";
///
/// 计量等级
///
public string DosageLevel = "0";
///
/// 隔离等级
///
public string InsulateLevel = "0";
///
/// 过敏等级
///
public string AllerayLevel = "0";
///
/// 护理等级名称
///
public string gradeNurse = "0";
///
/// 是否在点滴
///
public string isDropping { get; set; }
///
/// 是否在吸氧
///
public string isOxygenUptake { get; set; }
///
/// 房间ID
///
public string roomNumID = string.Empty;
///
/// 房间号
///
public string roomNum = string.Empty;
///
/// SIPID
///
public string deviceSipId = string.Empty;
///
/// 设备Mac地址
///
public string deviceMac = string.Empty;
}
}