using Datory.Annotations;
namespace GxPress.Entity
{
///
/// 词库
///
[DataTable("tede_thesaurus")]
public class Thesaurus : Datory.Entity
{
///
/// 词库类型 1 热词 2 冷词
///
[DataColumn]
public int ThesaurusType { get; set; }
///
/// 词库名称
///
[DataColumn]
public string ThesaurusName { get; set; }
///
/// 是否禁用
///
///
[DataColumn]
public bool IsDisable { get; set; }
}
}