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 string age; 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; private string patientType; private string hisPatientId; private string visitTimes; private string address; private string nation; private string extend1; private string extend2; private string extend3; private string extend4; private string extend5; /// /// /// public int? Id { get{ return id; } set{ id=value; } } /// /// /// public string MdrecNo { get{ return mdrecNo; } set{ mdrecNo=value; } } /// /// /// public string ArchivesNo { get{ return archivesNo; } set{ archivesNo=value; } } /// /// /// public string Name { get{ return name; } set{ name=value; } } /// /// /// public string Sex { get{ return sex; } set{ sex=value; } } /// /// /// public DateTime? BirthDay { get{ return birthDay; } set{ birthDay=value; } } /// /// /// public string Age { get{ return age; } set{ age=value; } } /// /// /// public string Height { get{ return height; } set{ height=value; } } /// /// /// public string Weight { get{ return weight; } set{ weight=value; } } /// /// /// public int? DepId { get{ return depId; } set{ depId=value; } } /// /// /// public string Illdistrict { get{ return illdistrict; } set{ illdistrict=value; } } /// /// /// public string SickBed { get{ return sickBed; } set{ sickBed=value; } } /// /// /// public string BloodType { get{ return bloodType; } set{ bloodType=value; } } /// /// /// public string RHBloodType { get{ return rHBloodType; } set{ rHBloodType=value; } } /// /// /// public string PatientKind { get{ return patientKind; } set{ patientKind=value; } } /// /// /// public DateTime? InHosDate { get{ return inHosDate; } set{ inHosDate=value; } } /// /// /// public string IdentityCard { get{ return identityCard; } set{ identityCard=value; } } /// /// /// public string Contacts { get{ return contacts; } set{ contacts=value; } } /// /// /// public string ContactsPhone { get{ return contactsPhone; } set{ contactsPhone=value; } } /// /// /// public string OperatorNo { get{ return operatorNo; } set{ operatorNo=value; } } /// /// /// public string OperatorName { get{ return operatorName; } set{ operatorName=value; } } /// /// /// public DateTime? OperateDate { get{ return operateDate; } set{ operateDate=value; } } /// /// /// public string PatientType { get { return patientType; } set { patientType = value; } } /// /// /// public string HisPatientId { get { return hisPatientId; } set { hisPatientId = value; } } /// /// /// public string VisitTimes { get { return visitTimes; } set { visitTimes = value; } } /// /// /// public string Address { get { return address; } set { address = value; } } /// /// /// public string Nation { get { return nation; } set { nation = value; } } /// /// /// public string Extend1 { get { return extend1; } set { extend1 = value; } } /// /// /// public string Extend2 { get { return extend2; } set { extend2 = value; } } /// /// /// public string Extend3 { get { return extend3; } set { extend3 = value; } } /// /// /// public string Extend4 { get { return extend4; } set { extend4 = value; } } /// /// /// public string Extend5 { get { return extend5; } set { extend5 = value; } } } }