App:新增 operation_logs/quota_packages/tenant_payments/tenant_quota_package_purchases 表 Identity:修正 Avatar 字段类型(varchar(256)->text),保持现有数据不变
20 lines
445 B
C#
20 lines
445 B
C#
using MediatR;
|
|
|
|
namespace TakeoutSaaS.Application.App.QuotaPackages.Commands;
|
|
|
|
/// <summary>
|
|
/// 更新配额包状态命令(上架/下架)。
|
|
/// </summary>
|
|
public sealed record UpdateQuotaPackageStatusCommand : IRequest<bool>
|
|
{
|
|
/// <summary>
|
|
/// 配额包 ID。
|
|
/// </summary>
|
|
public long QuotaPackageId { get; init; }
|
|
|
|
/// <summary>
|
|
/// 是否上架。
|
|
/// </summary>
|
|
public bool IsActive { get; init; }
|
|
}
|