using Forks.EnterpriseServices.DomainObjects2; using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace ButcherManage.BO { [KeyField("ID", KeyGenType.identity)] public abstract class Base { public long ID { get; set; } } }