namespace ZR.LiveForum.Model.Liveforum { /// /// 系统公告 /// [SugarTable("T_SystemNotifications")] [Tenant("liveforum")] public class T_SystemNotifications { /// /// 通知ID /// [SugarColumn(IsPrimaryKey = true, IsIdentity = true)] public long Id { get; set; } /// /// 标题 /// public string Title { get; set; } /// /// 正文内容 /// public string Content { get; set; } /// /// 是否启用该通知 /// public bool IsActive { get; set; } /// /// 发布时间 /// public DateTime? PublishTime { get; set; } /// /// 过期时间 /// public DateTime? ExpireTime { get; set; } /// /// 创建时间 /// public DateTime? CreatedAt { get; set; } /// /// 更新时间 /// public DateTime? UpdatedAt { get; set; } } }