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