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();
}
}