141 lines
		
	
	
		
			2.4 KiB
		
	
	
	
		
			C#
		
	
	
	
	
	
			
		
		
	
	
			141 lines
		
	
	
		
			2.4 KiB
		
	
	
	
		
			C#
		
	
	
	
	
	
| 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;  
 | |
| 
 | |
| 
 | |
| 		/// <summary>
 | |
| 		/// 编号,自增
 | |
| 		/// </summary>
 | |
| 		public int? Id
 | |
| 		{
 | |
| 		    get{ return id; }
 | |
| 			set{ id=value; }
 | |
| 		}
 | |
| 		/// <summary>
 | |
| 		/// 名称
 | |
| 		/// </summary>
 | |
| 		public string Name
 | |
| 		{
 | |
| 		    get{ return name; }
 | |
| 			set{ name=value; }
 | |
| 		}
 | |
| 		/// <summary>
 | |
| 		/// 英文名称
 | |
| 		/// </summary>
 | |
| 		public string EName
 | |
| 		{
 | |
| 		    get{ return eName; }
 | |
| 			set{ eName=value; }
 | |
| 		}
 | |
| 		/// <summary>
 | |
| 		/// 显示名称
 | |
| 		/// </summary>
 | |
| 		public string ShowName
 | |
| 		{
 | |
| 		    get{ return showName; }
 | |
| 			set{ showName=value; }
 | |
| 		}
 | |
| 		/// <summary>
 | |
| 		/// 标识名称
 | |
| 		/// </summary>
 | |
| 		public string TagName
 | |
| 		{
 | |
| 		    get{ return tagName; }
 | |
| 			set{ tagName=value; }
 | |
| 		}
 | |
| 		/// <summary>
 | |
| 		/// 数据源编码
 | |
| 		/// </summary>
 | |
| 		public string Code
 | |
| 		{
 | |
| 		    get{ return code; }
 | |
| 			set{ code=value; }
 | |
| 		}
 | |
| 		/// <summary>
 | |
| 		/// 助记码
 | |
| 		/// </summary>
 | |
| 		public string HCode
 | |
| 		{
 | |
| 		    get{ return hCode; }
 | |
| 			set{ hCode=value; }
 | |
| 		}
 | |
| 		/// <summary>
 | |
| 		/// 警告值高
 | |
| 		/// </summary>
 | |
| 		public Decimal? HighLimit
 | |
| 		{
 | |
| 		    get{ return highLimit; }
 | |
| 			set{ highLimit=value; }
 | |
| 		}
 | |
| 		/// <summary>
 | |
| 		/// 警告值低
 | |
| 		/// </summary>
 | |
| 		public Decimal? LowLimit
 | |
| 		{
 | |
| 		    get{ return lowLimit; }
 | |
| 			set{ lowLimit=value; }
 | |
| 		}
 | |
| 		/// <summary>
 | |
| 		/// 是否显示
 | |
| 		/// </summary>
 | |
| 		public int? IsShow
 | |
| 		{
 | |
| 		    get{ return isShow; }
 | |
| 			set{ isShow=value; }
 | |
| 		}
 | |
| 		/// <summary>
 | |
| 		/// 是否提示
 | |
| 		/// </summary>
 | |
| 		public int? IsWarning
 | |
| 		{
 | |
| 		    get{ return isWarning; }
 | |
| 			set{ isWarning=value; }
 | |
| 		}
 | |
| 		/// <summary>
 | |
| 		/// 是否有效
 | |
| 		/// </summary>
 | |
| 		public int? IsValid
 | |
| 		{
 | |
| 		    get{ return isValid; }
 | |
| 			set{ isValid=value; }
 | |
| 		}
 | |
| 		/// <summary>
 | |
| 		/// 排序
 | |
| 		/// </summary>
 | |
| 		public int? OrderBy
 | |
| 		{
 | |
| 		    get{ return orderBy; }
 | |
| 			set{ orderBy=value; }
 | |
| 		}
 | |
| 		/// <summary>
 | |
| 		/// 备注
 | |
| 		/// </summary>
 | |
| 		public string Remark
 | |
| 		{
 | |
| 		    get{ return remark; }
 | |
| 			set{ remark=value; }
 | |
| 		} 
 | |
| 		
 | |
| 	}
 | |
| }
 |