using SqlSugar; using System.Reflection; namespace Tiobon.Core.Common.DB.Extension; public static class DbEntityException { public static object GetEntityTenant(this Type type) { var tenant = type.GetCustomAttribute(); return tenant?.configId; } }