App:新增 operation_logs/quota_packages/tenant_payments/tenant_quota_package_purchases 表 Identity:修正 Avatar 字段类型(varchar(256)->text),保持现有数据不变
12 lines
276 B
C#
12 lines
276 B
C#
using MediatR;
|
|
using TakeoutSaaS.Application.App.Statistics.Dto;
|
|
|
|
namespace TakeoutSaaS.Application.App.Statistics.Queries;
|
|
|
|
/// <summary>
|
|
/// 获取订阅概览统计。
|
|
/// </summary>
|
|
public sealed record GetSubscriptionOverviewQuery : IRequest<SubscriptionOverviewDto>
|
|
{
|
|
}
|