204 lines
3.9 KiB
C#
204 lines
3.9 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;
|
|
private int? isPublic;
|
|
private string spare1;
|
|
private string spare2;
|
|
private string spare3;
|
|
private string spare4;
|
|
private string spare5;
|
|
|
|
|
|
/// <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; }
|
|
}
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
public int? IsPublic
|
|
{
|
|
get{ return isPublic; }
|
|
set{ isPublic=value; }
|
|
}
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
public string Spare1
|
|
{
|
|
get{ return spare1; }
|
|
set{ spare1=value; }
|
|
}
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
public string Spare2
|
|
{
|
|
get{ return spare2; }
|
|
set{ spare2=value; }
|
|
}
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
public string Spare3
|
|
{
|
|
get{ return spare3; }
|
|
set{ spare3=value; }
|
|
}
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
public string Spare4
|
|
{
|
|
get{ return spare4; }
|
|
set{ spare4=value; }
|
|
}
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
public string Spare5
|
|
{
|
|
get{ return spare5; }
|
|
set{ spare5=value; }
|
|
}
|
|
}
|
|
}
|