using System;
using System.Collections;
using System.Collections.Generic;
using AIMSDAL;
namespace AIMSModel
{
	[Serializable]
    public partial class PhysioData
	{
        private int? id; 
        private int? patientId; 
        private int? physioDataType; 
        private int? physioDataConfigId; 
        private DateTime? recordTime; 
        private Decimal? value; 
        private int? isValid; 
        private string operatorNo; 
        private string operatorName; 
        private DateTime? operateDate; 
	
	
	    /// 
        /// 
        /// 
		public int? Id
		{
		    get{ return id; }
			set{ id=value; }
		}
	    /// 
        /// 
        /// 
		public int? PatientId
		{
		    get{ return patientId; }
			set{ patientId=value; }
		}
	    /// 
        /// 
        /// 
		public int? PhysioDataType
		{
		    get{ return physioDataType; }
			set{ physioDataType=value; }
		}
	    /// 
        /// 
        /// 
		public int? PhysioDataConfigId
		{
		    get{ return physioDataConfigId; }
			set{ physioDataConfigId=value; }
		}
	    /// 
        /// 
        /// 
		public DateTime? RecordTime
		{
		    get{ return recordTime; }
			set{ recordTime=value; }
		}
	    /// 
        /// 
        /// 
		public Decimal? Value
		{
		    get{ return value; }
			set{ this.value=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; }
		}
	}
}