using MediatR; namespace TakeoutSaaS.Application.App.Billings.Queries; /// /// 导出账单(Excel/PDF/CSV)。 /// public sealed record ExportBillingsQuery : IRequest { /// /// 要导出的账单 ID 列表。 /// public long[] BillingIds { get; init; } = []; /// /// 导出格式(Excel/Pdf/Csv)。 /// public string Format { get; init; } = "Excel"; }