114 lines
		
	
	
		
			2.1 KiB
		
	
	
	
		
			C#
		
	
	
	
	
	
			
		
		
	
	
			114 lines
		
	
	
		
			2.1 KiB
		
	
	
	
		
			C#
		
	
	
	
	
	
| using System;
 | |
| using System.Collections;
 | |
| using System.Collections.Generic;
 | |
| using AIMSDAL;
 | |
| 
 | |
| namespace AIMSModel
 | |
| {
 | |
| 	[Serializable]
 | |
|     public partial class FactEvents
 | |
| 	{
 | |
|         private int? id; 
 | |
|         private int? eventTypeId; 
 | |
|         private int? patientId; 
 | |
|         private int? eventId; 
 | |
|         private DateTime? eventBeginTime; 
 | |
|         private DateTime? eventEndTime; 
 | |
|         private int? isContinue; 
 | |
|         private string remark; 
 | |
|         private string operatorNo; 
 | |
|         private string operatorName; 
 | |
|         private DateTime? operateDate; 
 | |
| 	
 | |
| 	
 | |
| 	    /// <summary>
 | |
|         /// 
 | |
|         /// </summary>
 | |
| 		public int? Id
 | |
| 		{
 | |
| 		    get{ return id; }
 | |
| 			set{ id=value; }
 | |
| 		}
 | |
| 	    /// <summary>
 | |
|         /// 
 | |
|         /// </summary>
 | |
| 		public int? EventTypeId
 | |
| 		{
 | |
| 		    get{ return eventTypeId; }
 | |
| 			set{ eventTypeId=value; }
 | |
| 		}
 | |
| 	    /// <summary>
 | |
|         /// 
 | |
|         /// </summary>
 | |
| 		public int? PatientId
 | |
| 		{
 | |
| 		    get{ return patientId; }
 | |
| 			set{ patientId=value; }
 | |
| 		}
 | |
| 	    /// <summary>
 | |
|         /// 
 | |
|         /// </summary>
 | |
| 		public int? EventId
 | |
| 		{
 | |
| 		    get{ return eventId; }
 | |
| 			set{ eventId=value; }
 | |
| 		}
 | |
| 	    /// <summary>
 | |
|         /// 
 | |
|         /// </summary>
 | |
| 		public DateTime? EventBeginTime
 | |
| 		{
 | |
| 		    get{ return eventBeginTime; }
 | |
| 			set{ eventBeginTime=value; }
 | |
| 		}
 | |
| 	    /// <summary>
 | |
|         /// 
 | |
|         /// </summary>
 | |
| 		public DateTime? EventEndTime
 | |
| 		{
 | |
| 		    get{ return eventEndTime; }
 | |
| 			set{ eventEndTime=value; }
 | |
| 		}
 | |
| 	    /// <summary>
 | |
|         /// 
 | |
|         /// </summary>
 | |
| 		public int? IsContinue
 | |
| 		{
 | |
| 		    get{ return isContinue; }
 | |
| 			set{ isContinue=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; }
 | |
| 		}
 | |
| 	}
 | |
| }
 |