Ver Fonte

Merge commit 'refs/pull/333/head' of https://gitee.com/zuohuaijun/Admin.NET into next

zuohuaijun há 4 anos atrás
pai
commit
134bbc0bf1
1 ficheiros alterados com 1 adições e 1 exclusões
  1. 1 1
      Admin.NET/Admin.NET.Core/SqlSugar/SqlSugarSetup.cs

+ 1 - 1
Admin.NET/Admin.NET.Core/SqlSugar/SqlSugarSetup.cs

@@ -197,7 +197,7 @@ public static class SqlSugarSetup
     {
     {
         // 获取所有继承基类数据表集合
         // 获取所有继承基类数据表集合
         var entityTypes = App.EffectiveTypes.Where(u => !u.IsInterface && !u.IsAbstract && u.IsClass
         var entityTypes = App.EffectiveTypes.Where(u => !u.IsInterface && !u.IsAbstract && u.IsClass
-            && u.BaseType == typeof(EntityBase));
+            && (u.BaseType == typeof(EntityBase) || u.BaseType == typeof(EntityTenant) || u.BaseType == typeof(DataEntityBase)));
         if (!entityTypes.Any()) return;
         if (!entityTypes.Any()) return;
 
 
         foreach (var entityType in entityTypes)
         foreach (var entityType in entityTypes)