using SqlSugar; using Tnb; namespace JNPF.Common.Contracts; public class BaseEntity : Entity, IEntity where TKey : IEquatable { /// /// 获取或设置 编号. /// [SugarColumn(ColumnName = "id", ColumnDescription = "主键", IsPrimaryKey = true)] public TKey id { get; set; } public override object[] GetKeys() { return new object[] { id }; } }