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