150 lines
		
	
	
		
			3.4 KiB
		
	
	
	
		
			C#
		
	
	
	
	
	
			
		
		
	
	
			150 lines
		
	
	
		
			3.4 KiB
		
	
	
	
		
			C#
		
	
	
	
	
	
| using System;
 | |
| using System.Collections;
 | |
| using System.Collections.Generic;
 | |
| using AIMSDAL;
 | |
| 
 | |
| namespace AIMSModel
 | |
| {
 | |
|     [Serializable]
 | |
|     public partial class OperationTemplate
 | |
|     {
 | |
|         private int? id;
 | |
|         private string templateName;
 | |
|         private int? typeId;
 | |
|         private string itemKindName;
 | |
|         private DateTime? inRoomTime;
 | |
|         private int? itemId;
 | |
|         private DateTime? beginTime;
 | |
|         private DateTime? endTime;
 | |
|         private Decimal? value;
 | |
|         private string dosageUnit;
 | |
|         private string drugChannel;
 | |
|         private string giveDrugType;
 | |
|         private string operatorNo;
 | |
|         private string operatorName;
 | |
|         private DateTime? operateDate;
 | |
| 
 | |
| 
 | |
|         /// <summary>
 | |
|         /// 
 | |
|         /// </summary>
 | |
|         public int? Id
 | |
|         {
 | |
|             get { return id; }
 | |
|             set { id = value; }
 | |
|         }
 | |
|         /// <summary>
 | |
|         /// 
 | |
|         /// </summary>
 | |
|         public string TemplateName
 | |
|         {
 | |
|             get { return templateName; }
 | |
|             set { templateName = value; }
 | |
|         }
 | |
|         /// <summary>
 | |
|         /// 
 | |
|         /// </summary>
 | |
|         public int? TypeId
 | |
|         {
 | |
|             get { return typeId; }
 | |
|             set { typeId = value; }
 | |
|         }
 | |
|         /// <summary>
 | |
|         /// 
 | |
|         /// </summary>
 | |
|         public string ItemKindName
 | |
|         {
 | |
|             get { return itemKindName; }
 | |
|             set { itemKindName = value; }
 | |
|         }
 | |
|         /// <summary>
 | |
|         /// 
 | |
|         /// </summary>
 | |
|         public DateTime? InRoomTime
 | |
|         {
 | |
|             get { return inRoomTime; }
 | |
|             set { inRoomTime = value; }
 | |
|         }
 | |
|         /// <summary>
 | |
|         /// 
 | |
|         /// </summary>
 | |
|         public int? ItemId
 | |
|         {
 | |
|             get { return itemId; }
 | |
|             set { itemId = value; }
 | |
|         }
 | |
|         /// <summary>
 | |
|         /// 
 | |
|         /// </summary>
 | |
|         public DateTime? BeginTime
 | |
|         {
 | |
|             get { return beginTime; }
 | |
|             set { beginTime = value; }
 | |
|         }
 | |
|         /// <summary>
 | |
|         /// 
 | |
|         /// </summary>
 | |
|         public DateTime? EndTime
 | |
|         {
 | |
|             get { return endTime; }
 | |
|             set { endTime = value; }
 | |
|         }
 | |
|         /// <summary>
 | |
|         /// 
 | |
|         /// </summary>
 | |
|         public Decimal? Value
 | |
|         {
 | |
|             get { return value; }
 | |
|             set { this.value = value; }
 | |
|         }
 | |
|         /// <summary>
 | |
|         /// 
 | |
|         /// </summary>
 | |
|         public string DosageUnit
 | |
|         {
 | |
|             get { return dosageUnit; }
 | |
|             set { dosageUnit = value; }
 | |
|         }
 | |
|         /// <summary>
 | |
|         /// 
 | |
|         /// </summary>
 | |
|         public string DrugChannel
 | |
|         {
 | |
|             get { return drugChannel; }
 | |
|             set { drugChannel = value; }
 | |
|         }
 | |
|         /// <summary>
 | |
|         /// 
 | |
|         /// </summary>
 | |
|         public string GiveDrugType
 | |
|         {
 | |
|             get { return giveDrugType; }
 | |
|             set { giveDrugType = value; }
 | |
|         }
 | |
|         /// <summary>
 | |
|         /// 
 | |
|         /// </summary>
 | |
|         public string OperatorNo
 | |
|         {
 | |
|             get { return operatorNo; }
 | |
|             set { operatorNo = value; }
 | |
|         }
 | |
|         /// <summary>
 | |
|         /// 
 | |
|         /// </summary>
 | |
|         public string OperatorName
 | |
|         {
 | |
|             get { return operatorName; }
 | |
|             set { operatorName = value; }
 | |
|         }
 | |
|         /// <summary>
 | |
|         /// 
 | |
|         /// </summary>
 | |
|         public DateTime? OperateDate
 | |
|         {
 | |
|             get { return operateDate; }
 | |
|             set { operateDate = value; }
 | |
|         }
 | |
|     }
 | |
| }
 |