using SqlSugar; namespace Myshipping.Core.Entity { /// /// 自定义租户基类实体 /// public abstract class DBEntityTenant : DEntityBase { /// /// 租户id /// [SugarColumn(ColumnDescription = "租户id")] public virtual long? TenantId { get; set; } } }