using System;
using System.Collections;
using System.Collections.Generic;
namespace DrawGraph
{
[Serializable]
public partial class AdverseEvent
{
private int? id;
private string name;
private string level;
private int? orderBy;
private int? isValid;
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 Level
{
get{ return level; }
set{ level=value; }
}
///
/// 排序
///
public int? OrderBy
{
get{ return orderBy; }
set{ orderBy=value; }
}
///
/// 是否有效
///
public int? IsValid
{
get{ return isValid; }
set{ isValid=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; }
}
}
}