using System.Collections.Generic; namespace GxPress.Result.DataCenter { /// /// 平台数据 /// public class PlatformDataResult { /// /// 平台运营数据 /// /// public PlatformOperationDataResult PlatformOperationDataResult { get; set; } /// /// 用户总数增长趋势 /// /// public UserIncreaseResult UserIncreaseResult { get; set; } /// /// 用户地区分布 /// /// public List UserAreaDistributingResults { get; set; } /// /// 会员用户占比 /// /// public UserVipProportionResult UserVipProportionResult { get; set; } /// /// 实时在线人数 /// /// public OnlineUserResult OnlineUserResult { get; set; } /// /// 平台内容数据 /// /// public PlatformContentDataResult PlatformContentDataResult { get; set; } /// /// 内容类型分布图 /// public List ContentTypeDistributingResult { get; set; } /// /// 内容科学分布图 /// public List ContentOlogyDistributingResult { get; set; } /// /// 收费内容统计图 /// public PayContentstatisticsResult PayContentstatisticsResult { get; set; } /// /// 内容增长情况图 /// public ContentIncreaseResult ContentIncreaseResult { get; set; } /// /// 平台累计访问数据(次) /// public PlatformAccumulativeVisitResult PlatformAccumulativeVisitResult { get; set; } /// /// 访问终端统计 /// public List VisitPortResult { get; set; } /// /// 平台商务数据 /// public PlatformCommerceResult PlatformCommerceResult { get; set; } /// /// 内容销售排行榜 /// /// public List ContentSaleRankingResults { get; set; } /// /// 内容分类销售占比 /// public List ContentSaleProportionResults { get; set; } } /// /// 平台运营数据 /// public class PlatformOperationDataResult { /// /// 平台总人数 /// /// public int SumUserCount { get; set; } /// /// 新增用户数 /// /// public int NewUserCount { get; set; } /// /// 在线用户数 /// /// public int OnlineUserCount { get; set; } /// /// 活跃用户数 /// /// public int ActivityUserCount { get; set; } } /// /// 用户增长 /// public class UserIncreaseResult { /// /// 数据 /// /// public List ExpectedData { get; set; } /// /// 月份 /// /// public List MonthData { get; set; } } /// /// 用户地区分布 /// public class UserAreaDistributingResult { /// /// 城市 /// /// public string Name { get; set; } /// /// 数量 /// /// public int Value { get; set; } } /// /// 会员用户占比 /// public class UserVipProportionResult { /// /// /// /// public decimal Value { get; set; } } /// /// 实时在线人数 /// public class OnlineUserResult { /// /// 数据 /// /// public List ExpectedData { get; set; } /// /// 数据 /// /// public List ActualData { get; set; } /// /// 月份 /// /// public List MonthData { get; set; } } /// /// 平台内容数据 /// public class PlatformContentDataResult { /// /// 平台内容总数 /// /// public int SumContentCount { get; set; } /// /// 新增内容数 /// /// public int NewContentCount { get; set; } /// /// 在线出版数 /// /// public int OnlineContentCount { get; set; } /// /// 付费内容 /// /// public int PayContentCount { get; set; } } /// /// 内容类型分布图 /// public class ContentTypeDistributingResult { /// /// 名称 /// /// public string Name { get; set; } /// /// 占比数量 /// /// public int Value { get; set; } } /// /// 内容科学分布图 /// public class ContentOlogyDistributingResult { /// /// 名称 /// /// public string Name { get; set; } /// /// 占比数量 /// /// public int Value { get; set; } } /// /// 收费内容统计图 /// public class PayContentstatisticsResult { /// /// 数据 /// /// public List PageAdata { get; set; } /// /// 数据 /// /// public List PageBdata { get; set; } /// /// 标题 /// /// public List Title { get; set; } } /// /// 内容增长情况图 /// public class ContentIncreaseResult { /// /// 数据 /// /// public List ExpectedData { get; set; } /// /// 月份 /// /// public List MonthData { get; set; } } /// /// 平台累计访问数据(次) /// public class PlatformAccumulativeVisitResult { /// /// 访问数量 /// /// public int VisitCount { get; set; } /// /// 收藏 /// /// public int CollctionCount { get; set; } /// /// 转发 /// /// public int RetransmissionCount { get; set; } /// /// 评论 /// /// public int CommentCount { get; set; } } /// /// 同比上周 /// public class PlatformWeekVisitResult { /// /// 访问数量 /// /// public int VisitRatio { get; set; } /// /// 收藏 /// /// public int CollctionRatio { get; set; } /// /// 转发 /// /// public int RetransmissionRatio { get; set; } /// /// 评论 /// /// public int CommentRatio { get; set; } } /// /// 访问终端统计 /// public class VisitPortResult { /// /// 名称 /// /// public string Name { get; set; } /// /// 占比数量 /// /// public int Value { get; set; } } /// /// 平台商务数据 /// public class PlatformCommerceResult { /// /// 销售总额 /// /// public decimal Amount { get; set; } /// /// 订单数量 /// /// public int OrderCount { get; set; } /// /// Vip总人数 /// /// public int VipUserCount { get; set; } /// /// vip购物总额(元) /// /// public decimal VipAmount { get; set; } /// /// Vip订单数 /// /// public int VipOrderCount { get; set; } } /// /// 内容销售排行榜 /// public class ContentSaleRankingResult { /// /// 类别名称 /// /// public string CategoryName { get; set; } /// ///类型 /// /// public int MediaType { get; set; } /// /// 销售总额 /// /// public decimal Amount { get; set; } /// /// 占比 /// /// public int Proportion { get; set; } } /// /// 内容分类销售占比 /// public class ContentSaleProportionResult { /// /// 名称 /// /// public string Name { get; set; } /// /// 占比数量 /// /// public int Value { get; set; } /// ///类型 /// /// public int MediaType { get; set; } } }