using System;
using System.Collections;
using System.Collections.Generic; 
namespace DrawGraph
{
	[Serializable]
    public partial class BloodGasAnalysisDict
	{
        private int? id; 
        private string name; 
        private string eName; 
        private string showName; 
        private string tagName; 
        private string code; 
        private string hCode; 
        private Decimal? highLimit; 
        private Decimal? lowLimit; 
        private int? isShow; 
        private int? isWarning; 
        private int? isValid; 
        private int? orderBy; 
        private string remark;  
		/// 
		/// 编号,自增
		/// 
		public int? Id
		{
		    get{ return id; }
			set{ id=value; }
		}
		/// 
		/// 名称
		/// 
		public string Name
		{
		    get{ return name; }
			set{ name=value; }
		}
		/// 
		/// 英文名称
		/// 
		public string EName
		{
		    get{ return eName; }
			set{ eName=value; }
		}
		/// 
		/// 显示名称
		/// 
		public string ShowName
		{
		    get{ return showName; }
			set{ showName=value; }
		}
		/// 
		/// 标识名称
		/// 
		public string TagName
		{
		    get{ return tagName; }
			set{ tagName=value; }
		}
		/// 
		/// 数据源编码
		/// 
		public string Code
		{
		    get{ return code; }
			set{ code=value; }
		}
		/// 
		/// 助记码
		/// 
		public string HCode
		{
		    get{ return hCode; }
			set{ hCode=value; }
		}
		/// 
		/// 警告值高
		/// 
		public Decimal? HighLimit
		{
		    get{ return highLimit; }
			set{ highLimit=value; }
		}
		/// 
		/// 警告值低
		/// 
		public Decimal? LowLimit
		{
		    get{ return lowLimit; }
			set{ lowLimit=value; }
		}
		/// 
		/// 是否显示
		/// 
		public int? IsShow
		{
		    get{ return isShow; }
			set{ isShow=value; }
		}
		/// 
		/// 是否提示
		/// 
		public int? IsWarning
		{
		    get{ return isWarning; }
			set{ isWarning=value; }
		}
		/// 
		/// 是否有效
		/// 
		public int? IsValid
		{
		    get{ return isValid; }
			set{ isValid=value; }
		}
		/// 
		/// 排序
		/// 
		public int? OrderBy
		{
		    get{ return orderBy; }
			set{ orderBy=value; }
		}
		/// 
		/// 备注
		/// 
		public string Remark
		{
		    get{ return remark; }
			set{ remark=value; }
		} 
		
	}
}