- 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
13 lines
263 B
C#
13 lines
263 B
C#
using Fengling.Console.Models.Entities;
|
|
|
|
namespace Fengling.Console.Models.Dtos;
|
|
|
|
public class TenantQueryDto : PaginationQueryDto
|
|
{
|
|
public string? Name { get; set; }
|
|
|
|
public string? TenantId { get; set; }
|
|
|
|
public TenantStatus? Status { get; set; }
|
|
}
|