feat: 新增配额包/支付相关实体与迁移
App:新增 operation_logs/quota_packages/tenant_payments/tenant_quota_package_purchases 表 Identity:修正 Avatar 字段类型(varchar(256)->text),保持现有数据不变
This commit is contained in:
@@ -0,0 +1,14 @@
|
||||
using MediatR;
|
||||
|
||||
namespace TakeoutSaaS.Application.App.QuotaPackages.Commands;
|
||||
|
||||
/// <summary>
|
||||
/// 删除配额包命令。
|
||||
/// </summary>
|
||||
public sealed record DeleteQuotaPackageCommand : IRequest<bool>
|
||||
{
|
||||
/// <summary>
|
||||
/// 配额包 ID。
|
||||
/// </summary>
|
||||
public long QuotaPackageId { get; init; }
|
||||
}
|
||||
Reference in New Issue
Block a user