using System;
using System.Collections.Generic;
using System.Data;
using System.Text;
using Datory.Annotations;
namespace GxPress.Entity.Topic
{
///
/// 话题分组
///
[DataTable("tede_topic_group")]
public class TopicGroup : Datory.Entity
{
///
/// 用户ID
///
[DataColumn]
public int UserId { get; set; }
///
/// 名称
///
[DataColumn]
public string Name { get; set; }
///
/// 包含个数
///
[DataColumn]
public int IncludeCount { get; set; }
///
/// 排序
///
[DataColumn] public int Sort { get; set; }
}
}