using System; using System.Collections.Generic; using System.Data; using System.Linq; using System.Text; using QMFrameWork.Data.Attributes; using System.Runtime.Serialization; namespace QMAPP.Entity.Sys { /// /// 通知浏览记录 /// [Serializable] [DBTable(TableName = "T_QM_NOTICEBROWSE")] public class NoticeBrowse : BaseEntity { /// ///通知浏览记录主键 /// [DBColumn(ColumnName = "PID", DataType = DbType.String, IsKey = true)] public string PID { get; set; } /// ///通知主键 /// [DBColumn(ColumnName = "NOTICEID", DataType = DbType.String)] public string NOTICEID { get; set; } /// ///浏览用户 /// [DBColumn(ColumnName = "USERID", DataType = DbType.String)] public string USERID { get; set; } /// ///0:未浏览 1:已浏览 /// [DBColumn(ColumnName = "ISREAD", DataType = DbType.String)] public string ISREAD { get; set; } /// ///浏览时间 /// [DBColumn(ColumnName = "READTIME", DataType = DbType.DateTime)] public DateTime READTIME { get; set; } /// ///0:未确认 1:已确认 /// [DBColumn(ColumnName = "ISAFFIRM", DataType = DbType.String)] public string ISAFFIRM { get; set; } /// ///确认时间 /// [DBColumn(ColumnName = "AFFIRMTIME", DataType = DbType.DateTime)] public DateTime AFFIRMTIME { get; set; } /// ///回复内容 /// [DBColumn(ColumnName = "REPLYCONTENT", DataType = DbType.String)] public string REPLYCONTENT { get; set; } /// ///回复时间 /// [DBColumn(ColumnName = "REPLYTIME", DataType = DbType.DateTime)] public DateTime REPLYTIME { get; set; } public string REPLYTIMETXT { get; set; } /// /// 浏览用户名 /// public string UserName { get; set; } /// /// 错误信息 /// public string InfoError { get; set; } /// /// 导入时判断添加修改 /// public bool IsNewInfo { get; set; } /// ///浏览用户 /// public string CREATEUSERID { get; set; } } }