97 lines
		
	
	
		
			1.8 KiB
		
	
	
	
		
			C#
		
	
	
	
	
	
			
		
		
	
	
			97 lines
		
	
	
		
			1.8 KiB
		
	
	
	
		
			C#
		
	
	
	
	
	
| using System;
 | |
| using System.Collections;
 | |
| using System.Collections.Generic; 
 | |
| 
 | |
| namespace AIMSModel
 | |
| {
 | |
| 	[Serializable]
 | |
|     public partial class ChargsTemplate
 | |
| 	{
 | |
|         private int? id; 
 | |
|         private string templateType; 
 | |
|         private string templateName; 
 | |
|         private string hCode; 
 | |
|         private string connectId; 
 | |
|         private string defaultValue; 
 | |
|         private int? isValid; 
 | |
|         private int? operatorId; 
 | |
|         private DateTime? operatorTime;
 | |
| 
 | |
| 
 | |
| 		/// <summary>
 | |
| 		/// 编号,自增
 | |
| 		/// </summary>
 | |
| 		public int? Id
 | |
| 		{
 | |
| 		    get{ return id; }
 | |
| 			set{ id=value; }
 | |
| 		}
 | |
| 	    /// <summary>
 | |
|         /// 模板类型
 | |
|         /// 1.麻醉师
 | |
|         /// 2.护士
 | |
|         /// </summary>
 | |
| 		public string TemplateType
 | |
| 		{
 | |
| 		    get{ return templateType; }
 | |
| 			set{ templateType=value; }
 | |
| 		}
 | |
| 		/// <summary>
 | |
| 		/// 模板名称
 | |
| 		/// </summary>
 | |
| 		public string TemplateName
 | |
| 		{
 | |
| 		    get{ return templateName; }
 | |
| 			set{ templateName=value; }
 | |
| 		}
 | |
| 	    /// <summary>
 | |
|         /// 助记码
 | |
|         /// </summary>
 | |
| 		public string HCode
 | |
| 		{
 | |
| 		    get{ return hCode; }
 | |
| 			set{ hCode=value; }
 | |
| 		}
 | |
| 		/// <summary>
 | |
| 		/// 所属费用编号,用','分隔
 | |
| 		/// </summary>
 | |
| 		public string ConnectId
 | |
| 		{
 | |
| 		    get{ return connectId; }
 | |
| 			set{ connectId=value; }
 | |
| 		}
 | |
| 		/// <summary>
 | |
| 		/// 所属费用数量,用','分隔
 | |
| 		/// </summary>
 | |
| 		public string DefaultValue
 | |
| 		{
 | |
| 		    get{ return defaultValue; }
 | |
| 			set{ defaultValue=value; }
 | |
| 		}
 | |
| 		/// <summary>
 | |
| 		/// 是否有效
 | |
| 		/// </summary>
 | |
| 		public int? IsValid
 | |
| 		{
 | |
| 		    get{ return isValid; }
 | |
| 			set{ isValid=value; }
 | |
| 		}
 | |
| 		/// <summary>
 | |
| 		/// 操作员编号
 | |
| 		/// </summary>
 | |
| 		public int? OperatorId
 | |
| 		{
 | |
| 		    get{ return operatorId; }
 | |
| 			set{ operatorId=value; }
 | |
| 		}
 | |
| 		/// <summary>
 | |
| 		/// 操作时间
 | |
| 		/// </summary>
 | |
| 		public DateTime? OperatorTime
 | |
| 		{
 | |
| 		    get{ return operatorTime; }
 | |
| 			set{ operatorTime=value; }
 | |
| 		}
 | |
| 	}
 | |
| }
 |