43 lines
1.0 KiB
C#
43 lines
1.0 KiB
C#
using System.Text.Json.Serialization;
|
|
using TakeoutSaaS.Domain.Tenants.Enums;
|
|
using TakeoutSaaS.Shared.Abstractions.Serialization;
|
|
|
|
namespace TakeoutSaaS.Application.App.Tenants.Dto;
|
|
|
|
/// <summary>
|
|
/// 租户入住进度 DTO。
|
|
/// </summary>
|
|
public sealed class TenantProgressDto
|
|
{
|
|
/// <summary>
|
|
/// 租户 ID。
|
|
/// </summary>
|
|
[JsonConverter(typeof(SnowflakeIdJsonConverter))]
|
|
public long TenantId { get; init; }
|
|
|
|
/// <summary>
|
|
/// 租户编码。
|
|
/// </summary>
|
|
public string Code { get; init; } = string.Empty;
|
|
|
|
/// <summary>
|
|
/// 当前租户状态。
|
|
/// </summary>
|
|
public TenantStatus Status { get; init; }
|
|
|
|
/// <summary>
|
|
/// 实名审核状态。
|
|
/// </summary>
|
|
public TenantVerificationStatus VerificationStatus { get; init; }
|
|
|
|
/// <summary>
|
|
/// 当前订阅开始时间。
|
|
/// </summary>
|
|
public DateTime? EffectiveFrom { get; init; }
|
|
|
|
/// <summary>
|
|
/// 当前订阅到期时间。
|
|
/// </summary>
|
|
public DateTime? EffectiveTo { get; init; }
|
|
}
|