using ProjectBase.Data.BaseDAL; using ProjectBase.Util; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace SIMDP.Model { /// /// 系统信息提示 /// [Serializable] public class MoSystemNotice : BaseEntity { public MoSystemNotice() { this.CurrentLoginUserId = SysEnvironment.CurrentLoginID; } #region Field Members private long m_ID; //序号 private string m_NoticeTitle = ""; //标题 private int m_NoticeType = 0; //类别 private string m_NoticeContent = ""; //内容 private DateTime m_NoticeTime = DateTime.Now; //发生时间 private bool m_NoticeSign = false; //查看标记 private string m_NoticeOperator = ""; //操作员 #endregion #region Property Members /// /// 序号 /// public virtual long ID { get { return this.m_ID; } set { this.m_ID = value; } } /// /// 标题 /// public virtual string NoticeTitle { get { return this.m_NoticeTitle; } set { this.m_NoticeTitle = value; } } /// /// 类别 /// public virtual int NoticeType { get { return this.m_NoticeType; } set { this.m_NoticeType = value; } } /// /// 内容 /// public virtual string NoticeContent { get { return this.m_NoticeContent; } set { this.m_NoticeContent = value; } } /// /// 发生时间 /// public virtual DateTime NoticeTime { get { return this.m_NoticeTime; } set { this.m_NoticeTime = value; } } /// /// 查看标记 /// public virtual bool NoticeSign { get { return this.m_NoticeSign; } set { this.m_NoticeSign = value; } } /// /// 操作员 /// public virtual string NoticeOperator { get { return this.m_NoticeOperator; } set { this.m_NoticeOperator = value; } } #endregion } }