using FreeSql.DataAnnotations; namespace Admin.Core.Model { public interface IEntity { } public class Entity : IEntity { /// /// 主键Id /// [Column(Position = 1,IsIdentity = true)] public virtual TKey Id { get; set; } } public class Entity : Entity { } }