using Datory; using Datory.Annotations; namespace GxPress.Entity.Topic { /// /// 话题评论 /// [DataTable("tede_topic_comment")] public class TopicComment:Datory.Entity { /// /// 话题ID /// [DataColumn] public int TopicId { get; set; } /// /// 用户ID /// [DataColumn] public int UserId { get; set; } /// /// 内容 /// [DataColumn] public string Content { get; set; } /// /// 点赞次数 /// [DataColumn] public int Laud { get; set; } /// /// 父级ID /// [DataColumn] public int Pid { get; set; } /// /// 是否讨论 /// [DataColumn] public bool IsUnderstand { get; set; } } }