using System.Collections.Generic; using System.Threading.Tasks; using GxPress.Result.DataCenter; namespace GxPress.Service.Interface.PlatformData { public interface IPlatformDataService : IService { /// /// 平台运营数据 /// /// Task GetPlatformDataAsync(); /// /// 用户总数增长趋势 /// /// Task GetUserIncreaseResult(); /// /// 用户地区分布 /// /// Task> GetUserAreaDistributingResults(); /// /// 会员用户占比 /// /// Task GetUserVipProportionResult(); /// /// 实时在线人数 /// /// Task GetOnlineUserResult(); /// /// 平台内容数据 /// /// Task GetPlatformContentDataResult(); /// /// 内容类型分布图 /// /// Task> GetContentTypeDistributingResults(); /// /// 收费内容统计图 /// /// Task GetPayContentstatisticsResult(); /// /// 内容增长情况图 /// /// Task GetContentIncreaseResult(); /// /// 平台累计访问数据(次) /// /// Task GetPlatformAccumulativeVisitResult(); /// /// 平台商务数据 /// /// Task GetPlatformCommerceResult(); } }