12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091 |
- using System.Collections.Generic;
- using System.Threading.Tasks;
- using GxPress.Result.DataCenter;
- namespace GxPress.Service.Interface.PlatformData
- {
- public interface IPlatformDataService : IService
- {
-
-
-
-
- Task<PlatformOperationDataResult> GetPlatformDataAsync();
-
-
-
-
- Task<UserIncreaseResult> GetUserIncreaseResult();
-
-
-
-
- Task<List<UserAreaDistributingResult>> GetUserAreaDistributingResults();
-
-
-
-
- Task<UserVipProportionResult> GetUserVipProportionResult();
-
-
-
-
- Task<OnlineUserResult> GetOnlineUserResult();
-
-
-
-
- Task<PlatformContentDataResult> GetPlatformContentDataResult();
-
-
-
-
- Task<List<ContentTypeDistributingResult>> GetContentTypeDistributingResults();
-
-
-
-
- Task<PayContentstatisticsResult> GetPayContentstatisticsResult();
-
-
-
-
- Task<ContentIncreaseResult> GetContentIncreaseResult();
-
-
-
-
- Task<PlatformAccumulativeVisitResult> GetPlatformAccumulativeVisitResult();
-
-
-
-
- Task<PlatformCommerceResult> GetPlatformCommerceResult();
-
-
-
-
- Task<List<ContentSaleRankingResult>> GetContentSaleRankingResults();
-
-
-
-
- Task<List<ContentSaleProportionResult>> GetContentSaleProportionResults();
-
-
-
-
- Task<List<PlatformContentDataInfoResult>> GetPlatformContentDataInfoResults();
-
-
-
-
- Task<PlatformAccumulativeVisitResult> GetPlatformTodayVisitResult();
-
-
-
-
- Task<CommerceDataResult> GetCommerceDataResult();
- Task<PlatformCommerceResult> GetPlatformTodayCommerceResult();
- }
- }
|