using Datory;
using Datory.Annotations;
namespace GxPress.Entity.Topic
{
///
/// 话题的分析包含了 收藏 点赞 转发 评论点赞
///
[DataTable("tede_topic_analyze")]
public class TopicAnalyze:Datory.Entity
{
///
/// 话题ID
///
[DataColumn]
public int TopicId { get; set; }
///
/// 评论ID
///
[DataColumn]
public int TopicCommentId { get; set; }
///
/// 用户ID
///
[DataColumn]
public int UserId { get; set; }
///
/// 类型ID (1 话题点赞,2话题评论点赞,3话题收藏,4话题转发)
///
[DataColumn]
public int AnalyzeType { get; set; }
}
}