using System;
using CB.Entity;
namespace CB.Entity
{
//DT_TopicClass
public class TopicClassInfo:BaseEntity
{
///
/// 分类id
///
public int Cid{ get; set; }
///
/// 分类名称
///
public string Name{ get; set; }
///
/// 父id
///
public int ParentId{ get; set; }
///
/// 根id
///
public int RootId{ get; set; }
///
/// 层次编号
///
public int Depth{ get; set; }
///
/// 添加时间
///
public DateTime Addtime{ get; set; }
}
}