using System; using System.Collections.Generic; using System.Data; using System.Text; using Datory; using Datory.Annotations; namespace GxPress.Entity { /// /// 通知的分析包含了 收藏 点赞 转发 评论点赞 /// [DataTable("tede_notice_analyze")] public class NoticeAnalyze:Datory.Entity { /// /// 文章ID /// [DataColumn] public int NoticeId { get; set; } /// /// 评论ID /// [DataColumn] public int NoticeCommentId { get; set; } /// /// 用户ID /// [DataColumn] public int UserId { get; set; } /// /// 类型ID (1 通知点赞,2评论点赞,3收藏,4转发) /// [DataColumn] public int AnalyzeType { get; set; } } }