using System; using System.Collections; using System.Collections.Generic; using AIMSDAL; namespace AIMSModel { [Serializable] public partial class OperationRoom { private int? id; private string name; private string helpCode; private string ip; private int? roomOrder; private int? isValid; private string operatorNo; private string operatorName; private DateTime? operateDate; private string site; private string physioSetting; /// /// /// public int? Id { get{ return id; } set{ id=value; } } /// /// /// public string Name { get{ return name; } set{ name=value; } } /// /// /// public string HelpCode { get{ return helpCode; } set{ helpCode=value; } } /// /// /// public string Ip { get{ return ip; } set{ ip=value; } } /// /// /// public int? RoomOrder { get{ return roomOrder; } set{ roomOrder=value; } } /// /// /// public int? IsValid { get{ return isValid; } set{ isValid=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 Site { get { return site; } set { site = value; } } /// /// /// public string PhysioSetting { get { return physioSetting; } set { physioSetting = value; } } } }