204 lines
		
	
	
		
			3.9 KiB
		
	
	
	
		
			C#
		
	
	
	
	
	
			
		
		
	
	
			204 lines
		
	
	
		
			3.9 KiB
		
	
	
	
		
			C#
		
	
	
	
	
	
| using System;
 | |
| using System.Collections;
 | |
| using System.Collections.Generic;
 | |
| using AIMSDAL;
 | |
| 
 | |
| namespace AIMSModel
 | |
| {
 | |
| 	[Serializable]
 | |
|     public partial class OrisPatient
 | |
| 	{
 | |
|         private int? id; 
 | |
|         private string mdrecNo; 
 | |
|         private string archivesNo; 
 | |
|         private string name; 
 | |
|         private string sex; 
 | |
|         private DateTime? birthDay; 
 | |
|         private string height; 
 | |
|         private string weight; 
 | |
|         private int? depId; 
 | |
|         private string illdistrict; 
 | |
|         private string sickBed; 
 | |
|         private string bloodType; 
 | |
|         private string rHBloodType; 
 | |
|         private string patientKind; 
 | |
|         private DateTime? inHosDate; 
 | |
|         private string identityCard; 
 | |
|         private string contacts; 
 | |
|         private string contactsPhone; 
 | |
|         private string operatorNo; 
 | |
|         private string operatorName; 
 | |
|         private DateTime? operateDate; 
 | |
| 	
 | |
| 	
 | |
| 	    /// <summary>
 | |
|         /// 
 | |
|         /// </summary>
 | |
| 		public int? Id
 | |
| 		{
 | |
| 		    get{ return id; }
 | |
| 			set{ id=value; }
 | |
| 		}
 | |
| 	    /// <summary>
 | |
|         /// 
 | |
|         /// </summary>
 | |
| 		public string MdrecNo
 | |
| 		{
 | |
| 		    get{ return mdrecNo; }
 | |
| 			set{ mdrecNo=value; }
 | |
| 		}
 | |
| 	    /// <summary>
 | |
|         /// 
 | |
|         /// </summary>
 | |
| 		public string ArchivesNo
 | |
| 		{
 | |
| 		    get{ return archivesNo; }
 | |
| 			set{ archivesNo=value; }
 | |
| 		}
 | |
| 	    /// <summary>
 | |
|         /// 
 | |
|         /// </summary>
 | |
| 		public string Name
 | |
| 		{
 | |
| 		    get{ return name; }
 | |
| 			set{ name=value; }
 | |
| 		}
 | |
| 	    /// <summary>
 | |
|         /// 
 | |
|         /// </summary>
 | |
| 		public string Sex
 | |
| 		{
 | |
| 		    get{ return sex; }
 | |
| 			set{ sex=value; }
 | |
| 		}
 | |
| 	    /// <summary>
 | |
|         /// 
 | |
|         /// </summary>
 | |
| 		public DateTime? BirthDay
 | |
| 		{
 | |
| 		    get{ return birthDay; }
 | |
| 			set{ birthDay=value; }
 | |
| 		}
 | |
| 	    /// <summary>
 | |
|         /// 
 | |
|         /// </summary>
 | |
| 		public string Height
 | |
| 		{
 | |
| 		    get{ return height; }
 | |
| 			set{ height=value; }
 | |
| 		}
 | |
| 	    /// <summary>
 | |
|         /// 
 | |
|         /// </summary>
 | |
| 		public string Weight
 | |
| 		{
 | |
| 		    get{ return weight; }
 | |
| 			set{ weight=value; }
 | |
| 		}
 | |
| 	    /// <summary>
 | |
|         /// 
 | |
|         /// </summary>
 | |
| 		public int? DepId
 | |
| 		{
 | |
| 		    get{ return depId; }
 | |
| 			set{ depId=value; }
 | |
| 		}
 | |
| 	    /// <summary>
 | |
|         /// 
 | |
|         /// </summary>
 | |
| 		public string Illdistrict
 | |
| 		{
 | |
| 		    get{ return illdistrict; }
 | |
| 			set{ illdistrict=value; }
 | |
| 		}
 | |
| 	    /// <summary>
 | |
|         /// 
 | |
|         /// </summary>
 | |
| 		public string SickBed
 | |
| 		{
 | |
| 		    get{ return sickBed; }
 | |
| 			set{ sickBed=value; }
 | |
| 		}
 | |
| 	    /// <summary>
 | |
|         /// 
 | |
|         /// </summary>
 | |
| 		public string BloodType
 | |
| 		{
 | |
| 		    get{ return bloodType; }
 | |
| 			set{ bloodType=value; }
 | |
| 		}
 | |
| 	    /// <summary>
 | |
|         /// 
 | |
|         /// </summary>
 | |
| 		public string RHBloodType
 | |
| 		{
 | |
| 		    get{ return rHBloodType; }
 | |
| 			set{ rHBloodType=value; }
 | |
| 		}
 | |
| 	    /// <summary>
 | |
|         /// 
 | |
|         /// </summary>
 | |
| 		public string PatientKind
 | |
| 		{
 | |
| 		    get{ return patientKind; }
 | |
| 			set{ patientKind=value; }
 | |
| 		}
 | |
| 	    /// <summary>
 | |
|         /// 
 | |
|         /// </summary>
 | |
| 		public DateTime? InHosDate
 | |
| 		{
 | |
| 		    get{ return inHosDate; }
 | |
| 			set{ inHosDate=value; }
 | |
| 		}
 | |
| 	    /// <summary>
 | |
|         /// 
 | |
|         /// </summary>
 | |
| 		public string IdentityCard
 | |
| 		{
 | |
| 		    get{ return identityCard; }
 | |
| 			set{ identityCard=value; }
 | |
| 		}
 | |
| 	    /// <summary>
 | |
|         /// 
 | |
|         /// </summary>
 | |
| 		public string Contacts
 | |
| 		{
 | |
| 		    get{ return contacts; }
 | |
| 			set{ contacts=value; }
 | |
| 		}
 | |
| 	    /// <summary>
 | |
|         /// 
 | |
|         /// </summary>
 | |
| 		public string ContactsPhone
 | |
| 		{
 | |
| 		    get{ return contactsPhone; }
 | |
| 			set{ contactsPhone=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; }
 | |
| 		}
 | |
| 	}
 | |
| }
 |