using GxPress.EnumConst; using Datory; using Datory.Annotations; namespace GxPress.Entity.Topic { /// /// 通知收件人 /// [DataTable("tede_topic_addressee")] public class TopicAddressee : Datory.Entity { /// /// 通知ID /// [DataColumn] public int TopicId { get; set; } /// /// 收件人 /// [DataColumn] public int UserId { get; set; } /// /// 收件人姓名 /// [DataColumn] public string UserName { get; set; } /// /// 是否阅读 /// [DataColumn] public bool IsRead { get; set; } /// /// 是否管理员 /// [DataColumn] public bool IsAdmin { get; set; } /// /// 是否上传 /// /// [DataColumn] public bool IsUpload{get;set;} } }