95 lines
1.8 KiB
C#
95 lines
1.8 KiB
C#
using System;
|
|
using System.Collections;
|
|
using System.Collections.Generic;
|
|
|
|
namespace AIMSModel
|
|
{
|
|
[Serializable]
|
|
public partial class AnaesthesiaEvents
|
|
{
|
|
private int? id;
|
|
private string name;
|
|
private string hCode;
|
|
private string theEventsId;
|
|
private int? isValid;
|
|
private int? isAutomatic;
|
|
private int? operatorId;
|
|
private DateTime? operatorTime;
|
|
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 HCode
|
|
{
|
|
get{ return hCode; }
|
|
set{ hCode=value; }
|
|
}
|
|
/// <summary>
|
|
/// 所属事件编号,用','分隔
|
|
/// </summary>
|
|
public string TheEventsId
|
|
{
|
|
get{ return theEventsId; }
|
|
set{ theEventsId=value; }
|
|
}
|
|
/// <summary>
|
|
/// 是否有效
|
|
/// </summary>
|
|
public int? IsValid
|
|
{
|
|
get{ return isValid; }
|
|
set{ isValid=value; }
|
|
}
|
|
/// <summary>
|
|
/// 类型 1.用药 2.事件
|
|
/// </summary>
|
|
public int? IsAutomatic
|
|
{
|
|
get{ return isAutomatic; }
|
|
set{ isAutomatic=value; }
|
|
}
|
|
/// <summary>
|
|
/// 操作员编号
|
|
/// </summary>
|
|
public int? OperatorId
|
|
{
|
|
get{ return operatorId; }
|
|
set{ operatorId=value; }
|
|
}
|
|
/// <summary>
|
|
/// 操作时间
|
|
/// </summary>
|
|
public DateTime? OperatorTime
|
|
{
|
|
get{ return operatorTime; }
|
|
set{ operatorTime=value; }
|
|
}
|
|
/// <summary>
|
|
/// 备注
|
|
/// </summary>
|
|
public string Remark
|
|
{
|
|
get{ return remark; }
|
|
set{ remark=value; }
|
|
}
|
|
}
|
|
}
|