CommerceDataResult.cs 861 B

12345678910111213141516171819202122232425262728
  1. using System.Collections.Generic;
  2. namespace GxPress.Result.DataCenter
  3. {
  4. /// <summary>
  5. /// 商务数据
  6. /// </summary>
  7. public class CommerceDataResult
  8. {
  9. /// <summary>
  10. /// 平台商务数据
  11. /// </summary>
  12. public PlatformCommerceResult PlatformCommerceResult { get; set; }
  13. /// <summary>
  14. /// 今日平台商务数据
  15. /// </summary>
  16. public PlatformCommerceResult PlatformTodayCommerceResult { get; set; }
  17. /// <summary>
  18. /// 内容销售排行榜
  19. /// </summary>
  20. /// <value></value>
  21. public List<ContentSaleRankingResult> ContentSaleRankingResults { get; set; }
  22. /// <summary>
  23. /// 内容分类销售占比
  24. /// </summary>
  25. public List<ContentSaleProportionResult> ContentSaleProportionResults { get; set; }
  26. }
  27. }