using System; using System.Collections.Generic; using System.Data; using System.Text; using Datory.Annotations; namespace GxPress.Entity.Topic { /// /// 话题分组成员 /// [DataTable("tede_topic_group_user")] public class TopicGroupUser : Datory.Entity { /// /// 换题分组ID /// [DataColumn] public int TopicGroupId { get; set; } /// /// 成员用户ID /// [DataColumn] public int UserId { get; set; } /// /// 排序 /// [DataColumn] public int Sort { get; set; } } }