39 lines
957 B
C#
39 lines
957 B
C#
using System.Text.Json.Serialization;
|
|
using TakeoutSaaS.Shared.Abstractions.Serialization;
|
|
|
|
namespace TakeoutSaaS.Application.App.Tenants.Dto;
|
|
|
|
/// <summary>
|
|
/// 租户审核领取信息 DTO。
|
|
/// </summary>
|
|
public sealed class TenantReviewClaimDto
|
|
{
|
|
/// <summary>
|
|
/// 领取记录 ID。
|
|
/// </summary>
|
|
[JsonConverter(typeof(SnowflakeIdJsonConverter))]
|
|
public long Id { get; init; }
|
|
|
|
/// <summary>
|
|
/// 租户 ID。
|
|
/// </summary>
|
|
[JsonConverter(typeof(SnowflakeIdJsonConverter))]
|
|
public long TenantId { get; init; }
|
|
|
|
/// <summary>
|
|
/// 领取人用户 ID。
|
|
/// </summary>
|
|
[JsonConverter(typeof(SnowflakeIdJsonConverter))]
|
|
public long ClaimedBy { get; init; }
|
|
|
|
/// <summary>
|
|
/// 领取人名称。
|
|
/// </summary>
|
|
public string ClaimedByName { get; init; } = string.Empty;
|
|
|
|
/// <summary>
|
|
/// 领取时间。
|
|
/// </summary>
|
|
public DateTime ClaimedAt { get; init; }
|
|
}
|