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