using System;
using System.Collections;
using System.Collections.Generic;
namespace AIMSModel
{
[Serializable]
public partial class NoticeTemplate
{
private int? id;
private string contents;
private string hCode;
private int? operatorId;
private DateTime? operatorTime;
///
/// 编号,自增
///
public int? Id
{
get{ return id; }
set{ id=value; }
}
///
/// 内容
///
public string Contents
{
get{ return contents; }
set{ contents=value; }
}
///
/// 助记码
///
public string HCode
{
get{ return hCode; }
set{ hCode=value; }
}
///
/// 操作员编号
///
public int? OperatorId
{
get{ return operatorId; }
set{ operatorId=value; }
}
///
/// 操作时间
///
public DateTime? OperatorTime
{
get{ return operatorTime; }
set{ operatorTime=value; }
}
}
}