using System;
using System.Collections.Generic;
using System.Text;
using Datory;
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; }
}
}