using System.Collections.Generic; using GxPress.Result.Category; namespace GxPress.Result.Media { /// /// 媒体 /// public class BookMediaResult { /// /// /// public int Id { get; set; } /// /// 媒体类型 文章100 书籍20,课程30,音频40,期刊50,视频60,名栏90,公众号110,刊期120 /// public int MediaType { get; set; } /// /// 标题 /// public string Title { get; set; } /// /// 标题图片 /// public string ImageUrls { get; set; } /// /// 简介 /// public string Summary { get; set; } /// /// 作者 /// public string Author { get; set; } /// /// 来源 /// public string Source { get; set; } /// /// Json内容 /// public string Blocks { get; set; } /// /// 添加时间 /// public string AddDate { get; set; } /// /// 文章阅读量 /// public int ReadCount { get; set; } /// /// 是否推荐 1 设置 2取消 /// public int IsRecommend { get; set; } /// /// 出版社 /// public string Press { get; set; } /// /// 出版时间 /// public string PublishTime { get; set; } /// /// ios折扣价格打折 /// public decimal IosDiscountPrice { get; set; } /// /// IOS价格 /// public decimal IosPrice { get; set; } /// /// 其他折扣价格打折 /// public decimal OtherDiscountPrice { get; set; } /// /// 其他价格 /// public decimal OtherPrice { get; set; } /// /// 免费类容占比 /// /// public decimal FreeProportion { get; set; } /// /// 收藏次数 /// public int CollectCount { get; set; } /// /// 转发数量 /// /// public int RetransmissionCount { get; set; } /// /// 评论数量 /// /// public int CommentCount { get; set; } /// /// 书籍目录 /// /// public List BookCatalogResults { get; set; } /// /// 评论分数 /// /// public decimal CommentScore { get; set; } /// /// 是否购买 /// /// public bool IsBuy { get; set; } /// /// 是否收藏 /// /// public bool IsCollect { get; set; } } /// /// 返回书籍目录 /// public class BookCatalogResult { /// /// /// /// public int Id { get; set; } /// /// 目录名称 /// /// public string CatalogNameg { get; set; } /// /// 目录ID /// /// public string CatalogId { get; set; } /// /// 是否可阅读 /// /// public bool IsRead { get; set; } /// /// 是否存在子集 /// /// public bool IsChildren { get; set; } /// /// /// /// public List Children { get; set; } } }