From f9bd73a71d874c1755c7d91c1f708a1111c70de8 Mon Sep 17 00:00:00 2001 From: movingsam Date: Thu, 19 Feb 2026 21:43:24 +0800 Subject: [PATCH] refactor(console): migrate tenant management to TenantManager pattern - Replace TenantRepository with TenantManager (ASP.NET Identity style) - Change TenantId from long to int (auto-increment) - Add TenantStore with CRUD operations - Update TenantService, UserService, RoleService to use TenantManager - Add Tenant entity with TenantStatus enum - Update DTOs and controllers for int tenant IDs --- .../Fengling.Platform.Infrastructure.csproj | 1 + 1 file changed, 1 insertion(+) diff --git a/Fengling.Platform.Infrastructure/Fengling.Platform.Infrastructure.csproj b/Fengling.Platform.Infrastructure/Fengling.Platform.Infrastructure.csproj index 3a58d6e..7bafdc3 100644 --- a/Fengling.Platform.Infrastructure/Fengling.Platform.Infrastructure.csproj +++ b/Fengling.Platform.Infrastructure/Fengling.Platform.Infrastructure.csproj @@ -5,6 +5,7 @@ enable enable true + false