using System; using System.Collections.Generic; using GxPress.EnumConst; using GxPress.Result.Category; namespace GxPress.Result.Media { /// /// 导航显示 /// public class NavigationMediaResult { /// /// /// /// public int Id { get; set; } /// /// 编号 /// /// public string AutoNumber { get; set; } /// /// 媒体类型 /// 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; } /// /// 名师ID /// /// public int TeacherId { get; set; } /// /// 阅读量 /// /// public int ReadCount { get; set; } /// /// 创建时间 /// /// public DateTime? CreatedDate { get; set; } /// /// 收藏数量 /// /// public int CollectCount { get; set; } } /// /// 排行榜 /// public class RankingListResult { /// /// /// /// public int Id { get; set; } /// /// 编号 /// /// public string AutoNumber { get; set; } /// /// 媒体类型 /// 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; } /// /// 名师ID /// /// public int TeacherId { get; set; } /// /// 评分 /// public decimal CommentScore { get; set; } /// /// 阅读量 /// /// public int ReadCount { get; set; } /// /// 创建时间 /// /// public DateTime? CreatedDate { get; set; } /// /// 时长 /// /// public string Duration { get; set; } } public class RankingListCategoryResult { public IEnumerable RankingListResults { get; set; } public Dictionary Category { get; set; } } /// /// 媒体 /// public class MediaResult { /// /// 编号 /// /// public string AutoNumber { get; set; } /// /// /// public int Id { get; set; } /// /// 媒体类型 /// Article=1, //书籍 //Book = 2, ////课程 //Curriculum = 3, ////音频 //Audio = 4, ////期刊 //Journal = 5, ////视频 //Video=6 /// 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; } /// /// 名师ID /// /// public int TeacherId { get; set; } /// /// 来源 /// public string Source { get; set; } /// /// Json内容 /// public string Blocks { get; set; } /// /// 审核状态 1 2 /// public int IsChecked { get; set; } /// /// 添加时间 /// public string AddDate { get; set; } /// /// 排序 /// public int Sort { get; set; } /// /// 文章阅读量 /// public int ReadCount { get; set; } /// /// 是否置顶 1置顶 2取消 /// public int IsTop { get; set; } /// /// 分类ID /// public List CategoryId { get; set; } /// /// app内容导航 /// /// public int AppCategoryId { get; set; } /// /// 完整分类ID /// public List FullCategoryId { get; set; } /// /// 分类名称 /// /// public List CategoryName { get; set; } /// /// 标签ID /// public int LableId { get; set; } /// /// 是否推荐 1 设置 2取消 /// public int IsRecommend { get; set; } /// /// 出版社 /// public string Press { get; set; } /// /// 出版时间 /// public string PublishTime { get; set; } /// /// 媒体类 /// public List MediaLibraryResults { get; set; } /// /// 媒体标签 /// /// public List MediaLableResults { get; set; } /// /// 操作人ID /// /// public int AdminId { get; set; } /// /// 操作人 /// /// public string Creator { 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 AttachTypeConst AttachType { get; set; } /// /// 类型 1名栏 2公众号 /// /// public int AttachId { get; set; } /// /// 关联的媒体ID /// /// public int MediaId { get; set; } /// /// 关联的媒体标题 /// /// public string MediaTitle { get; set; } /// /// 刊期年 /// /// public string JournalsYear { get; set; } /// /// 刊期期数 /// /// public int JournalsCategory { get; set; } /// /// 所有类别 /// /// public List CategoryResults { get; set; } /// /// 收藏次数 /// public int CollectCount { get; set; } /// /// 转发数量 /// /// public int RetransmissionCount { get; set; } /// /// 评论数量 /// /// public int CommentCount { get; set; } /// /// 销售总金额 /// /// public decimal SellAmount { get; set; } /// /// 订单数量 /// /// public int OrderCount { get; set; } /// /// 书籍目录 /// /// public List BookCatalogResults { get; set; } /// /// 是否习题 1 是 2否 /// /// public int IsExercises { get; set; } } /// /// 书籍目录 /// public class MediaLibraryResult { /// /// /// /// public int Id { get; set; } /// /// 媒体ID /// /// public int MediaId { get; set; } /// /// 文件路径 /// public string FileUrl { get; set; } /// /// 文件名称 /// public string Name { get; set; } /// /// 排序 /// public int Sort { get; set; } /// /// 章节名称 /// /// public string SectionName { get; set; } /// /// 类型 1 file 2 audio /// /// public int TypeId { get; set; } /// /// 章节Id /// /// public string SectionId { get; set; } } /// /// 媒体标签 /// public class MediaLableResult { /// /// 媒体ID /// /// public int MediaId { get; set; } /// /// 标签ID /// public int LableId { get; set; } /// /// 标签名称 /// public string LableName { get; set; } } /// /// 笔记显示摘录 /// public class MediaNoteResult { /// /// /// /// public int Id { get; set; } /// /// 标题 /// public string Title { get; set; } /// /// 标题图片 /// public string ImageUrls { get; set; } /// /// 作者 /// public string Author { get; set; } } /// /// 大咖讲座 /// public class MediaCathedraResult { /// /// 简介 /// public string Summary { get; set; } /// /// /// /// public int Id { get; set; } /// /// 标题 /// public string Title { get; set; } /// /// 标题图片 /// public string ImageUrls { get; set; } /// /// 出版社 /// /// public string Press { get; set; } /// /// 作者 /// public string Author { get; set; } /// /// 阅读量 /// /// public int ReadCount { get; set; } /// /// 创建时间 /// /// public DateTime? CreatedDate { get; set; } /// /// 时长 /// /// public string Duration { get; set; } /// /// 收藏数量 /// /// public int CollectCount { get; set; } /// /// 媒体类型 /// public int MediaType { get; set; } } /// /// 每日技能 /// public class SkillInfo { public int Id { get; set; } /// /// Json内容 /// public string Blocks { get; set; } /// /// 类型 /// /// public int MediaType { get; set; } } /// /// 榜单 /// public class MediaRankingResult { /// /// /// /// public string Name { get; set; } /// /// /// /// public int MediaType { get; set; } /// /// /// /// public IEnumerable Items { get; set; } } /// /// 明栏 /// public class MediaStarLableResult { /// /// 名栏目ID /// /// public int Id { get; set; } /// /// 明栏名称 /// /// public string Name { get; set; } /// /// 明栏数据 /// /// public IEnumerable Item { get; set; } } }