using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace YTSoft.BaseCallCenter.Model { /// /// T_Sys_Note:实体类(属性说明自动提取数据库字段的描述信息) /// [Serializable] public partial class T_Sys_Note { public T_Sys_Note() { } #region Model private int _nid; private string _ntitle; private string _ncontent; private int? _userid; private int? _ntype; private string _accuser; private DateTime? _addtime; /// /// 通知id /// public int Nid { set { _nid = value; } get { return _nid; } } /// /// 标题 /// public string NTitle { set { _ntitle = value; } get { return _ntitle; } } /// /// 内容 /// public string NContent { set { _ncontent = value; } get { return _ncontent; } } /// /// 添加人 /// public int? Userid { set { _userid = value; } get { return _userid; } } /// /// 文本类型(通知:1;公告:2) /// public int? NType { set { _ntype = value; } get { return _ntype; } } /// /// 接收人 /// public string AccUser { set { _accuser = value; } get { return _accuser; } } /// /// /// public DateTime? AddTime { set { _addtime = value; } get { return _addtime; } } #endregion Model } }