86 lines
1.6 KiB
C#
86 lines
1.6 KiB
C#
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;
|
|
|
|
/// <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 Level
|
|
{
|
|
get{ return level; }
|
|
set{ level=value; }
|
|
}
|
|
/// <summary>
|
|
/// 排序
|
|
/// </summary>
|
|
public int? OrderBy
|
|
{
|
|
get{ return orderBy; }
|
|
set{ orderBy=value; }
|
|
}
|
|
/// <summary>
|
|
/// 是否有效
|
|
/// </summary>
|
|
public int? IsValid
|
|
{
|
|
get{ return isValid; }
|
|
set{ isValid=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; }
|
|
}
|
|
|
|
}
|
|
}
|