123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162 |
- using System;
- using System.Collections.Generic;
- using GxPress.Common.Page;
- using GxPress.Entity;
- using GxPress.Entity.Article;
- using GxPress.Entity.WorkFlow;
- using GxPress.EnumConst;
- using GxPress.Result.App.Analyze;
- namespace GxPress.Result.Article
- {
-
-
-
- public class ArticleResult : FlowTodoResult
- {
-
-
-
- public int Id { get; set; }
-
-
-
- public string Title { get; set; }
-
-
-
- public int GroupId { get; set; }
-
-
-
- public IEnumerable<string> ImageUrls { get; set; }
-
-
-
- public string Summary { get; set; }
-
-
-
- public string Author { get; set; }
-
-
-
- public string Source { get; set; }
-
-
-
- public IEnumerable<Block> ArticleBlocks { get; set; }
-
-
-
- public ArticleContent ArticleContent { get; set; }
-
-
-
- public bool IsChecked { get; set; }
-
-
-
- public DateTime AddDate { get; set; }
-
-
-
- public int Sort { get; set; }
-
-
-
- public int CommentCount { get; set; }
-
-
-
- public int CollectCount { get; set; }
-
-
-
- public int RetransmissionCount { get; set; }
-
-
-
- public int PraiseCount { get; set; }
-
-
-
- public string GroupName { get; set; }
-
-
-
- public PagedList<PraisePageResult> ArticlePraisePagedList { get; set; }
-
-
-
- public int ReadCount { get; set; }
-
-
-
- public bool IsTop { get; set; }
-
-
-
- public bool IsCollect { get; set; }
-
-
-
- public bool IsPraise { get; set; }
-
-
-
- public bool IsRetransmission { get; set; }
-
-
-
- public DateTime? CreatedDate { get; set; }
-
-
-
-
- public IEnumerable<Result.App.ArticleLabel.ArticleInnerLabelResult> ArticleInnerLabelsResult { get; set; }
-
-
-
-
- public int SourceType { get; set; }
-
-
-
-
- public bool IsBlocks { get; set; }
- }
-
-
-
- public class FlowTodoResult : FlowTodo
- {
- public FlowState State { get; set; }
-
-
-
- public string Title { get; set; }
- public string AvatarUrl { get; set; }
-
-
-
- public List<string> Summaries { get; set; }
- }
- }
|