using Datory.Annotations; namespace GxPress.Entity.Topic { /// /// 话题 /// [DataTable("tede_topic")] public class Topic : Datory.Entity { /// ///标题 /// [DataColumn] public string Title { get; set; } /// /// 用户 /// [DataColumn] public int UserId { get; set; } /// /// 内容 /// [DataColumn] public string Content { get; set; } /// /// 内容 /// [DataColumn] public string HtmlContent { get; set; } /// /// 阅读量 /// [DataColumn] public int ReadCount { get; set; } /// /// 允许用户 /// [DataColumn] public string AdmitPhone { get; set; } /// /// 小组ID /// [DataColumn] public int GroupId { get; set; } /// /// 笔记文件夹ID /// /// [DataColumn] public int FolderId { get; set; } } }