using System; using System.Collections.Generic; using System.Text; using Datory.Annotations; namespace GxPress.Entity.Missive { /// /// 站内信分析包含了 收藏 点赞 转发 /// [DataTable("tede_missive_analyze")] public class MissiveAnalyze : Datory.Entity { /// ///站内信ID /// [DataColumn] public int MissiveId { get; set; } /// /// 用户ID /// [DataColumn] public int UserId { get; set; } /// /// 类型ID (1 点赞,2评论点赞,3收藏,4转发) /// [DataColumn] public int AnalyzeType { get; set; } } }