using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using static System.Windows.Forms.VisualStyles.VisualStyleElement.TaskbarClock; namespace SWS.CAD.Models { public class ec_notification { #region 实体成员 /// /// ID /// public string ID { get; set; } /// /// 发送者的用户id /// public string SenderUserID { get; set; } = ""; /// /// 接收者的用户真实名字 /// public string RetrieveUserID { get; set; } = ""; /// /// 具体的实体ID /// public string DrawingSynID { get; set; } = ""; /// /// 是否被批准(是否看过)。0为没有。1为确认了 /// public int CheckFLG { get; set; } /// /// 确认时间 /// public string CheckTime { get; set; } = ""; /// /// 创建人 /// public string CreateUserID { get; set; } /// /// 创建时间 /// public DateTime? CreateTime { get; set; } /// /// 更新人 /// public string UpdateUserID { get; set; } /// /// 更新时间 /// public DateTime? UpdateTime { get; set; } #endregion #region 扩展字段 /// /// ec drawing syn中的备注 /// public string Remark { get; set; } /// /// ec drawing file中的ID /// public string DrawingID { get; set; } /// /// ec drawing file中的Name /// public string DrawingName { get; set; } #endregion } }