329 lines
		
	
	
		
			6.9 KiB
		
	
	
	
		
			C#
		
	
	
	
	
	
			
		
		
	
	
			329 lines
		
	
	
		
			6.9 KiB
		
	
	
	
		
			C#
		
	
	
	
	
	
| using System;
 | |
| using System.Collections;
 | |
| using System.Collections.Generic;
 | |
| using AIMSDAL;
 | |
| 
 | |
| namespace AIMSModel
 | |
| {
 | |
| 	[Serializable]
 | |
|     public partial class OperationApply
 | |
| 	{
 | |
|         private int? id; 
 | |
|         private int? orisPatientId; 
 | |
|         private int? applyDepId; 
 | |
|         private string operationType; 
 | |
|         private DateTime? orderOperationTime; 
 | |
|         private int? operationTimeLeight; 
 | |
|         private int? isReturnOperation; 
 | |
|         private int? isPlanReturnOperation; 
 | |
|         private int? isNotPlanReturnOperation; 
 | |
|         private string diagnoseRemark; 
 | |
|         private string operationRemark; 
 | |
|         private int? operationLevelId; 
 | |
|         private string contagion; 
 | |
|         private string intern; 
 | |
|         private string other; 
 | |
|         private DateTime? applyTime; 
 | |
|         private string applyOperatorNo; 
 | |
|         private DateTime? verifyTime; 
 | |
|         private string verifyOperatorNo; 
 | |
|         private DateTime? planOperationTime; 
 | |
|         private int? planOrder; 
 | |
|         private int? operationRoomId; 
 | |
|         private int? state; 
 | |
|         private string aSA; 
 | |
|         private string heartFunctionLevel; 
 | |
|         private int? isFasting; 
 | |
|         private string remark; 
 | |
|         private string operatorNo; 
 | |
|         private string operatorName; 
 | |
|         private DateTime? operateDate; 
 | |
|         private string operationSite; 
 | |
|         private string orderNo; 
 | |
|         private string medicalRecord; 
 | |
|         private DateTime? medicalRecordTime; 
 | |
| 	
 | |
| 	
 | |
| 	    /// <summary>
 | |
|         /// 
 | |
|         /// </summary>
 | |
| 		public int? Id
 | |
| 		{
 | |
| 		    get{ return id; }
 | |
| 			set{ id=value; }
 | |
| 		}
 | |
| 	    /// <summary>
 | |
|         /// 
 | |
|         /// </summary>
 | |
| 		public int? OrisPatientId
 | |
| 		{
 | |
| 		    get{ return orisPatientId; }
 | |
| 			set{ orisPatientId=value; }
 | |
| 		}
 | |
| 	    /// <summary>
 | |
|         /// 手术申请科室
 | |
|         /// </summary>
 | |
| 		public int? ApplyDepId
 | |
| 		{
 | |
| 		    get{ return applyDepId; }
 | |
| 			set{ applyDepId=value; }
 | |
| 		}
 | |
| 	    /// <summary>
 | |
|         /// 手术类型(急诊或择期)
 | |
|         /// </summary>
 | |
| 		public string OperationType
 | |
| 		{
 | |
| 		    get{ return operationType; }
 | |
| 			set{ operationType=value; }
 | |
| 		}
 | |
| 	    /// <summary>
 | |
|         /// 预约时间
 | |
|         /// </summary>
 | |
| 		public DateTime? OrderOperationTime
 | |
| 		{
 | |
| 		    get{ return orderOperationTime; }
 | |
| 			set{ orderOperationTime=value; }
 | |
| 		}
 | |
| 	    /// <summary>
 | |
|         /// 
 | |
|         /// </summary>
 | |
| 		public int? OperationTimeLeight
 | |
| 		{
 | |
| 		    get{ return operationTimeLeight; }
 | |
| 			set{ operationTimeLeight=value; }
 | |
| 		}
 | |
| 	    /// <summary>
 | |
|         /// 是否重返再手术
 | |
|         /// </summary>
 | |
| 		public int? IsReturnOperation
 | |
| 		{
 | |
| 		    get{ return isReturnOperation; }
 | |
| 			set{ isReturnOperation=value; }
 | |
| 		}
 | |
| 	    /// <summary>
 | |
|         /// 计划手术
 | |
|         /// </summary>
 | |
| 		public int? IsPlanReturnOperation
 | |
| 		{
 | |
| 		    get{ return isPlanReturnOperation; }
 | |
| 			set{ isPlanReturnOperation=value; }
 | |
| 		}
 | |
| 	    /// <summary>
 | |
|         /// 非计划手术
 | |
|         /// </summary>
 | |
| 		public int? IsNotPlanReturnOperation
 | |
| 		{
 | |
| 		    get{ return isNotPlanReturnOperation; }
 | |
| 			set{ isNotPlanReturnOperation=value; }
 | |
| 		}
 | |
| 	    /// <summary>
 | |
|         /// 
 | |
|         /// </summary>
 | |
| 		public string DiagnoseRemark
 | |
| 		{
 | |
| 		    get{ return diagnoseRemark; }
 | |
| 			set{ diagnoseRemark=value; }
 | |
| 		}
 | |
| 	    /// <summary>
 | |
|         /// 
 | |
|         /// </summary>
 | |
| 		public string OperationRemark
 | |
| 		{
 | |
| 		    get{ return operationRemark; }
 | |
| 			set{ operationRemark=value; }
 | |
| 		}
 | |
| 	    /// <summary>
 | |
|         /// 手术分级
 | |
|         /// </summary>
 | |
| 		public int? OperationLevelId
 | |
| 		{
 | |
| 		    get{ return operationLevelId; }
 | |
| 			set{ operationLevelId=value; }
 | |
| 		}
 | |
| 	    /// <summary>
 | |
|         /// 术前感染筛查
 | |
|         /// </summary>
 | |
| 		public string Contagion
 | |
| 		{
 | |
| 		    get{ return contagion; }
 | |
| 			set{ contagion=value; }
 | |
| 		}
 | |
| 	    /// <summary>
 | |
|         /// 
 | |
|         /// </summary>
 | |
| 		public string Intern
 | |
| 		{
 | |
| 		    get{ return intern; }
 | |
| 			set{ intern=value; }
 | |
| 		}
 | |
| 	    /// <summary>
 | |
|         /// 
 | |
|         /// </summary>
 | |
| 		public string Other
 | |
| 		{
 | |
| 		    get{ return other; }
 | |
| 			set{ other=value; }
 | |
| 		}
 | |
| 	    /// <summary>
 | |
|         /// 手术申请时间
 | |
|         /// </summary>
 | |
| 		public DateTime? ApplyTime
 | |
| 		{
 | |
| 		    get{ return applyTime; }
 | |
| 			set{ applyTime=value; }
 | |
| 		}
 | |
| 	    /// <summary>
 | |
|         /// 
 | |
|         /// </summary>
 | |
| 		public string ApplyOperatorNo
 | |
| 		{
 | |
| 		    get{ return applyOperatorNo; }
 | |
| 			set{ applyOperatorNo=value; }
 | |
| 		}
 | |
| 	    /// <summary>
 | |
|         /// 
 | |
|         /// </summary>
 | |
| 		public DateTime? VerifyTime
 | |
| 		{
 | |
| 		    get{ return verifyTime; }
 | |
| 			set{ verifyTime=value; }
 | |
| 		}
 | |
| 	    /// <summary>
 | |
|         /// 
 | |
|         /// </summary>
 | |
| 		public string VerifyOperatorNo
 | |
| 		{
 | |
| 		    get{ return verifyOperatorNo; }
 | |
| 			set{ verifyOperatorNo=value; }
 | |
| 		}
 | |
| 	    /// <summary>
 | |
|         /// 计划时间
 | |
|         /// </summary>
 | |
| 		public DateTime? PlanOperationTime
 | |
| 		{
 | |
| 		    get{ return planOperationTime; }
 | |
| 			set{ planOperationTime=value; }
 | |
| 		}
 | |
| 	    /// <summary>
 | |
|         /// 
 | |
|         /// </summary>
 | |
| 		public int? PlanOrder
 | |
| 		{
 | |
| 		    get{ return planOrder; }
 | |
| 			set{ planOrder=value; }
 | |
| 		}
 | |
| 	    /// <summary>
 | |
|         /// 
 | |
|         /// </summary>
 | |
| 		public int? OperationRoomId
 | |
| 		{
 | |
| 		    get{ return operationRoomId; }
 | |
| 			set{ operationRoomId=value; }
 | |
| 		}
 | |
| 	    /// <summary>
 | |
|         /// 1 待申请审核
 | |
|    //2 已审核
 | |
|    //3 已排程
 | |
|    //4 已访视
 | |
|    //5.手术中
 | |
|    //6.手术结束
 | |
|    //7.已归档
 | |
|    //8.手术终止
 | |
|    
 | |
|         /// </summary>
 | |
| 		public int? State
 | |
| 		{
 | |
| 		    get{ return state; }
 | |
| 			set{ state=value; }
 | |
| 		}
 | |
| 	    /// <summary>
 | |
|         /// 
 | |
|         /// </summary>
 | |
| 		public string ASA
 | |
| 		{
 | |
| 		    get{ return aSA; }
 | |
| 			set{ aSA=value; }
 | |
| 		}
 | |
| 	    /// <summary>
 | |
|         /// 
 | |
|         /// </summary>
 | |
| 		public string HeartFunctionLevel
 | |
| 		{
 | |
| 		    get{ return heartFunctionLevel; }
 | |
| 			set{ heartFunctionLevel=value; }
 | |
| 		}
 | |
| 	    /// <summary>
 | |
|         /// 
 | |
|         /// </summary>
 | |
| 		public int? IsFasting
 | |
| 		{
 | |
| 		    get{ return isFasting; }
 | |
| 			set{ isFasting=value; }
 | |
| 		}
 | |
| 	    /// <summary>
 | |
|         /// 
 | |
|         /// </summary>
 | |
| 		public string Remark
 | |
| 		{
 | |
| 		    get{ return remark; }
 | |
| 			set{ remark=value; }
 | |
| 		}
 | |
| 	    /// <summary>
 | |
|         /// 
 | |
|         /// </summary>
 | |
| 		public string OperatorNo
 | |
| 		{
 | |
| 		    get{ return operatorNo; }
 | |
| 			set{ operatorNo=value; }
 | |
| 		}
 | |
| 	    /// <summary>
 | |
|         /// 
 | |
|         /// </summary>
 | |
| 		public string OperatorName
 | |
| 		{
 | |
| 		    get{ return operatorName; }
 | |
| 			set{ operatorName=value; }
 | |
| 		}
 | |
| 	    /// <summary>
 | |
|         /// 
 | |
|         /// </summary>
 | |
| 		public DateTime? OperateDate
 | |
| 		{
 | |
| 		    get{ return operateDate; }
 | |
| 			set{ operateDate=value; }
 | |
| 		}
 | |
| 	    /// <summary>
 | |
|         /// 
 | |
|         /// </summary>
 | |
| 		public string OperationSite
 | |
| 		{
 | |
| 		    get{ return operationSite; }
 | |
| 			set{ operationSite=value; }
 | |
| 		}
 | |
| 	    /// <summary>
 | |
|         /// 
 | |
|         /// </summary>
 | |
| 		public string OrderNo
 | |
| 		{
 | |
| 		    get{ return orderNo; }
 | |
| 			set{ orderNo=value; }
 | |
| 		}
 | |
| 	    /// <summary>
 | |
|         /// 
 | |
|         /// </summary>
 | |
| 		public string MedicalRecord
 | |
| 		{
 | |
| 		    get{ return medicalRecord; }
 | |
| 			set{ medicalRecord=value; }
 | |
| 		}
 | |
| 	    /// <summary>
 | |
|         /// 
 | |
|         /// </summary>
 | |
| 		public DateTime? MedicalRecordTime
 | |
| 		{
 | |
| 		    get{ return medicalRecordTime; }
 | |
| 			set{ medicalRecordTime=value; }
 | |
| 		}
 | |
| 	}
 | |
| }
 |