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; /// /// 编号,自增 /// public int? Id { get{ return id; } set{ id=value; } } /// /// 名称 /// public string Name { get{ return name; } set{ name=value; } } /// /// 助记码 /// public string HCode { get{ return hCode; } set{ hCode=value; } } /// /// 所属事件编号,用','分隔 /// public string TheEventsId { get{ return theEventsId; } set{ theEventsId=value; } } /// /// 是否有效 /// public int? IsValid { get{ return isValid; } set{ isValid=value; } } /// /// 类型 1.用药 2.事件 /// public int? IsAutomatic { get{ return isAutomatic; } set{ isAutomatic=value; } } /// /// 操作员编号 /// public int? OperatorId { get{ return operatorId; } set{ operatorId=value; } } /// /// 操作时间 /// public DateTime? OperatorTime { get{ return operatorTime; } set{ operatorTime=value; } } /// /// 备注 /// public string Remark { get{ return remark; } set{ remark=value; } } } }