- 获取租户列表:GET /api/admin/v1/tenants - 用于填充租户下拉选择器 Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
38 lines
943 B
C#
38 lines
943 B
C#
using System.Text.Json.Serialization;
|
||
using TakeoutSaaS.Domain.Tenants.Enums;
|
||
using TakeoutSaaS.Shared.Abstractions.Serialization;
|
||
|
||
namespace TakeoutSaaS.Application.App.Tenants.Contracts;
|
||
|
||
/// <summary>
|
||
/// 租户列表项 DTO(用于下拉选择器)。
|
||
/// </summary>
|
||
public sealed class TenantListItemDto
|
||
{
|
||
/// <summary>
|
||
/// 租户 ID(雪花,序列化为字符串)。
|
||
/// </summary>
|
||
[JsonConverter(typeof(SnowflakeIdJsonConverter))]
|
||
public long Id { get; init; }
|
||
|
||
/// <summary>
|
||
/// 租户编码。
|
||
/// </summary>
|
||
public string Code { get; init; } = string.Empty;
|
||
|
||
/// <summary>
|
||
/// 租户名称。
|
||
/// </summary>
|
||
public string Name { get; init; } = string.Empty;
|
||
|
||
/// <summary>
|
||
/// 租户简称。
|
||
/// </summary>
|
||
public string? ShortName { get; init; }
|
||
|
||
/// <summary>
|
||
/// 租户状态。
|
||
/// </summary>
|
||
public TenantStatus Status { get; init; }
|
||
}
|