sunpengfei
2025-06-10 c16fb1bb2431f40eb4b8e1af13c5254e2cf41d5a
LifePayment/LifePayment.Application.Contracts/LifePay/IStatisticsService.cs
@@ -10,9 +10,13 @@
public interface IStatisticsService : IApplicationService
{
    Task<TopStatisticsOutput> GetTopStatistics(List<string>? channleList = null);
    Task<TopStatisticsOutput> GetTopStatistics(List<string>? channleList);
    Task<ReceiptsListOutPut> GetReceiptsList(List<string>? channleList = null);
    Task StatisticsByDate(int days);
    Task<ChannelDataListOutPut> GetChannelDataList(List<string>? channleList = null);
    Task<ReceiptsListOutPut> GetReceiptsList(List<string>? channleList);
    Task<ChannelDataListOutPut> GetChannelDataList(List<string>? channleList);
    Task<ChannlesRakeListOutPut> GetChannlesRakeList(List<string>? channleList);
}