using System; using System.Collections; using System.Collections.Generic; namespace AIMSModel { [Serializable] public partial class OperationGoodsBillRecord { private int? id; private int? operationRecordId; private string applianceUseType; private string bloodType; private string erythrocyte; private string platelet; private string plateletUnit; private string plasma; private string other; private string autoblood; private string infusionLocation; private string liquid; private DateTime? tourniquetBeginTime; private DateTime? tourniquetEndTime; private string tourniquetLocation; private int? specimen; private int? specimenNumber; private int? toFreeze; private int? toPathology; private int? toRoom; private int? notToTest; private string negativePlateLocation; private string doctorSign; private string remark; private string invasiveScreening; private string scrubNurse; private string scrubNurseSucceed; private string scrubSucceedTime; private string tourNurse; private string tourNurseSucceed; private string tourSucceedTime; private string coldDeposit; private List applianceRecordList; private List applianceRecordListraw; /// /// 编号,自增 /// public int? Id { get{ return id; } set{ id=value; } } /// /// 手术记录编号 /// public int? OperationRecordId { get{ return operationRecordId; } set{ operationRecordId=value; } } /// /// 使用科室 /// public string ApplianceUseType { get{ return applianceUseType; } set{ applianceUseType=value; } } /// /// 血型 /// public string BloodType { get{ return bloodType; } set{ bloodType=value; } } /// /// 红细胞 /// public string Erythrocyte { get{ return erythrocyte; } set{ erythrocyte=value; } } /// /// 血小板 /// public string Platelet { get{ return platelet; } set{ platelet=value; } } /// /// 血小板单位 /// public string PlateletUnit { get{ return plateletUnit; } set{ plateletUnit=value; } } /// /// 血浆 /// public string Plasma { get{ return plasma; } set{ plasma=value; } } /// /// 其它 /// public string Other { get{ return other; } set{ other=value; } } /// /// 自体血 /// public string Autoblood { get{ return autoblood; } set{ autoblood=value; } } /// /// 输液部位 /// public string InfusionLocation { get{ return infusionLocation; } set{ infusionLocation=value; } } /// /// 液体 /// public string Liquid { get{ return liquid; } set{ liquid=value; } } /// /// 止血带开始时间 /// public DateTime? TourniquetBeginTime { get{ return tourniquetBeginTime; } set{ tourniquetBeginTime=value; } } /// /// 止血带结束时间 /// public DateTime? TourniquetEndTime { get{ return tourniquetEndTime; } set{ tourniquetEndTime=value; } } /// /// 止血带位置 /// public string TourniquetLocation { get{ return tourniquetLocation; } set{ tourniquetLocation=value; } } /// /// 标本,0无、1有 /// public int? Specimen { get{ return specimen; } set{ specimen=value; } } /// /// 标本数量 /// public int? SpecimenNumber { get{ return specimenNumber; } set{ specimenNumber=value; } } /// /// 送冰冻,0无、1,有 /// public int? ToFreeze { get{ return toFreeze; } set{ toFreeze=value; } } /// /// 送病理,0无、1,有 /// public int? ToPathology { get{ return toPathology; } set{ toPathology=value; } } /// /// 送病房,0无、1,有 /// public int? ToRoom { get{ return toRoom; } set{ toRoom=value; } } /// /// 不送检 /// public int? NotToTest { get{ return notToTest; } set{ notToTest=value; } } /// /// 负极板位置 /// public string NegativePlateLocation { get{ return negativePlateLocation; } set{ negativePlateLocation=value; } } /// /// 医生签名 /// public string DoctorSign { get{ return doctorSign; } set{ doctorSign=value; } } /// /// 备注 /// public string Remark { get{ return remark; } set{ remark=value; } } /// /// 有创筛前检查 /// public string InvasiveScreening { get{ return invasiveScreening; } set{ invasiveScreening=value; } } /// /// 洗手护士 /// public string ScrubNurse { get{ return scrubNurse; } set{ scrubNurse=value; } } /// /// 洗手接台护士 /// public string ScrubNurseSucceed { get{ return scrubNurseSucceed; } set{ scrubNurseSucceed=value; } } /// /// 洗手护士接台时间 /// public string ScrubSucceedTime { get{ return scrubSucceedTime; } set{ scrubSucceedTime=value; } } /// /// 巡回护士 /// public string TourNurse { get{ return tourNurse; } set{ tourNurse=value; } } /// /// 巡回接台护士 /// public string TourNurseSucceed { get{ return tourNurseSucceed; } set{ tourNurseSucceed=value; } } /// /// 巡回护士接台时间 /// public string TourSucceedTime { get{ return tourSucceedTime; } set{ tourSucceedTime=value; } } /// /// 冷沉淀 /// public string ColdDeposit { get{ return coldDeposit; } set{ coldDeposit=value; } } /// /// 术中使用器械集合 /// public List ApplianceRecordList { get { return applianceRecordList; } set { applianceRecordList = value; } } /// /// 术中使用辅料包集合 /// public List ApplianceRecordListRaw { get { return applianceRecordListraw; } set { applianceRecordListraw = value; } } } }