using SqlSugar; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace WIDESEAWCS_Core.Tenants { /// /// 租户模型接口 /// public interface ITenantEntity { /// /// 租户Id /// [SugarColumn(DefaultValue = "0")] public long TenantId { get; set; } } }