- 新增 AdminRolesController 实现角色 CRUD 和权限管理 - 新增 BillingsController 实现账单查询功能 - 新增 SubscriptionsController 实现订阅管理功能 - 新增 TenantPackagesController 实现套餐管理功能 - 新增租户详情、配额使用、账单列表等查询功能 - 新增 TenantPackage、TenantSubscription 等领域实体 - 新增相关枚举:SubscriptionStatus、TenantPackageType 等 - 更新 appsettings 配置文件 - 更新权限授权策略提供者 Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
48 lines
1.2 KiB
C#
48 lines
1.2 KiB
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 record TenantQuotaUsageDto
|
||
{
|
||
/// <summary>
|
||
/// 租户 ID(雪花,序列化为字符串)。
|
||
/// </summary>
|
||
[JsonConverter(typeof(SnowflakeIdJsonConverter))]
|
||
public long TenantId { get; init; }
|
||
|
||
/// <summary>
|
||
/// 配额类型。
|
||
/// </summary>
|
||
public TenantQuotaType QuotaType { get; init; }
|
||
|
||
/// <summary>
|
||
/// 配额上限值。
|
||
/// </summary>
|
||
public decimal LimitValue { get; init; }
|
||
|
||
/// <summary>
|
||
/// 已使用值。
|
||
/// </summary>
|
||
public decimal UsedValue { get; init; }
|
||
|
||
/// <summary>
|
||
/// 剩余可用值。
|
||
/// </summary>
|
||
public decimal RemainingValue { get; init; }
|
||
|
||
/// <summary>
|
||
/// 重置周期(如 monthly、yearly)。
|
||
/// </summary>
|
||
public string? ResetCycle { get; init; }
|
||
|
||
/// <summary>
|
||
/// 上次重置时间。
|
||
/// </summary>
|
||
public DateTime? LastResetAt { get; init; }
|
||
}
|