sunpengfei
2025-06-10 5b1e0cd79b93ffb4c784ad15886066623845f9e3
LifePayment/LifePayment.Application.Contracts/LifePay/IStatisticsService.cs
@@ -10,11 +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<ChannlesRakeListOutPut> GetChannlesRakeList(List<string>? channleList = null);
    Task<ChannelDataListOutPut> GetChannelDataList(List<string>? channleList);
    Task<ChannlesRakeListOutPut> GetChannlesRakeList(List<string>? channleList);
}