namespace TakeoutSaaS.Application.App.Finance.Invoice.Dto;
///
/// 发票统计 DTO。
///
public sealed class FinanceInvoiceStatsDto
{
///
/// 本月已开票金额。
///
public decimal CurrentMonthIssuedAmount { get; set; }
///
/// 本月已开票张数。
///
public int CurrentMonthIssuedCount { get; set; }
///
/// 待开票数量。
///
public int PendingCount { get; set; }
///
/// 已作废数量。
///
public int VoidedCount { get; set; }
}