namespace TakeoutSaaS.Application.App.StoreAudits.Dto; /// /// 审核统计 DTO。 /// public sealed record StoreAuditStatisticsDto { /// /// 待审核数量。 /// public int PendingCount { get; init; } /// /// 超时数量。 /// public int OverdueCount { get; init; } /// /// 审核通过数量。 /// public int ApprovedCount { get; init; } /// /// 审核驳回数量。 /// public int RejectedCount { get; init; } /// /// 平均处理时长(小时)。 /// public double AvgProcessingHours { get; init; } /// /// 每日趋势。 /// public IReadOnlyList DailyTrend { get; init; } = []; }