using Datory.Annotations;
namespace GxPress.Entity.tede2.Foundation
{
///
/// 基金
///
[DataTable("tede_foundation")]
public class Foundation:Datory.Entity
{
///
/// 名称
///
///
[DataColumn]
public string Name { get; set; }
///
/// 是否禁用
///
///
[DataColumn]
public bool IsDisable { get; set; }
}
}