namespace ZR.Model.Content { /// /// 话题 /// [SugarTable("article_topic", TableDescription = "文章话题")] [Tenant(0)] public class ArticleTopic { /// /// 话题ID /// [SugarColumn(IsPrimaryKey = true, IsIdentity = true)] public long TopicId { get; set; } /// /// 话题名 /// public string TopicName { get; set; } /// /// 话题描述 /// public string TopicDescription { get; set; } /// /// 参与/发起次数 /// public int JoinNum { get; set; } /// /// 浏览次数 /// public int ViewNum { get; set; } /// /// 创建时间 /// public DateTime? AddTime { get; set; } /// /// 话题分类 /// public int? TopicType { get; set; } } }