using Datory.Annotations;
namespace GxPress.Entity.tede2.Antistop
{
///
/// 关键词
///
[DataTable("tede_antistop")]
public class Antistop : Datory.Entity
{
///
/// 名称
///
///
[DataColumn]
public string Name { get; set; }
///
/// 是否禁用
///
///
[DataColumn]
public bool IsDisable { get; set; }
}
}