using System;
using System.Collections;
using System.Collections.Generic;
using AIMSDAL;
namespace AIMSModel
{
	[Serializable]
    public partial class HospitalInfo
	{
        private int? id; 
        private string no; 
        private string hospitalName; 
        private string systemName; 
        private string address; 
        private string operatorNo; 
        private string operatorName; 
        private DateTime? operateDate; 
	
	
	    /// 
        /// 
        /// 
		public int? Id
		{
		    get{ return id; }
			set{ id=value; }
		}
	    /// 
        /// 
        /// 
		public string No
		{
		    get{ return no; }
			set{ no=value; }
		}
	    /// 
        /// 
        /// 
		public string HospitalName
		{
		    get{ return hospitalName; }
			set{ hospitalName=value; }
		}
	    /// 
        /// 
        /// 
		public string SystemName
		{
		    get{ return systemName; }
			set{ systemName=value; }
		}
	    /// 
        /// 
        /// 
		public string Address
		{
		    get{ return address; }
			set{ address=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; }
		}
	}
}