using System;
using System.Collections;
using System.Collections.Generic; 
namespace AIMSModel
{
	[Serializable]
    public partial class InstrumentRegistration
	{
        private int? id; 
        private string name; 
        private string numbers; 
        private string performance; 
        private string intact; 
        private string operatorName; 
        private DateTime? operatorTime; 
        private string remark;
        private string isClean;
	
	    /// 
        /// 编号,自增
        /// 
		public int? Id
		{
		    get{ return id; }
			set{ id=value; }
		}
	    /// 
        /// 名称/型号
        /// 
		public string Name
		{
		    get{ return name; }
			set{ name=value; }
		}
	    /// 
        /// 编号
        /// 
		public string Numbers
		{
		    get{ return numbers; }
			set{ numbers=value; }
		}
	    /// 
        /// 性能检测
        /// 
		public string Performance
		{
		    get{ return performance; }
			set{ performance=value; }
		}
	    /// 
        /// 是否完好备用
        /// 
		public string Intact
		{
		    get{ return intact; }
			set{ intact=value; }
		}
	    /// 
        /// 操作人
        /// 
		public string OperatorName
		{
		    get{ return operatorName; }
			set{ operatorName=value; }
		}
	    /// 
        /// 日期
        /// 
		public DateTime? OperatorTime
		{
		    get{ return operatorTime; }
			set{ operatorTime=value; }
		}
	    /// 
        /// 备注
        /// 
		public string Remark
		{
		    get{ return remark; }
			set{ remark=value; }
		}
        /// 
        /// 是否清洁
        /// 
        public string IsClean
        {
            get { return isClean; }
            set { isClean = value; }
        }
        
	}
}