App:新增 operation_logs/quota_packages/tenant_payments/tenant_quota_package_purchases 表 Identity:修正 Avatar 字段类型(varchar(256)->text),保持现有数据不变
63 lines
1.3 KiB
C#
63 lines
1.3 KiB
C#
using System.Text.Json.Serialization;
|
|
using TakeoutSaaS.Domain.Tenants.Enums;
|
|
using TakeoutSaaS.Shared.Abstractions.Serialization;
|
|
|
|
namespace TakeoutSaaS.Application.App.QuotaPackages.Dto;
|
|
|
|
/// <summary>
|
|
/// 配额包 DTO。
|
|
/// </summary>
|
|
public sealed record QuotaPackageDto
|
|
{
|
|
/// <summary>
|
|
/// 配额包 ID。
|
|
/// </summary>
|
|
[JsonConverter(typeof(SnowflakeIdJsonConverter))]
|
|
public long Id { get; init; }
|
|
|
|
/// <summary>
|
|
/// 配额包名称。
|
|
/// </summary>
|
|
public string Name { get; init; } = string.Empty;
|
|
|
|
/// <summary>
|
|
/// 配额类型。
|
|
/// </summary>
|
|
public TenantQuotaType QuotaType { get; init; }
|
|
|
|
/// <summary>
|
|
/// 配额数值。
|
|
/// </summary>
|
|
public decimal QuotaValue { get; init; }
|
|
|
|
/// <summary>
|
|
/// 价格。
|
|
/// </summary>
|
|
public decimal Price { get; init; }
|
|
|
|
/// <summary>
|
|
/// 是否上架。
|
|
/// </summary>
|
|
public bool IsActive { get; init; }
|
|
|
|
/// <summary>
|
|
/// 排序。
|
|
/// </summary>
|
|
public int SortOrder { get; init; }
|
|
|
|
/// <summary>
|
|
/// 描述。
|
|
/// </summary>
|
|
public string? Description { get; init; }
|
|
|
|
/// <summary>
|
|
/// 创建时间。
|
|
/// </summary>
|
|
public DateTime CreatedAt { get; init; }
|
|
|
|
/// <summary>
|
|
/// 更新时间。
|
|
/// </summary>
|
|
public DateTime? UpdatedAt { get; init; }
|
|
}
|