ArticlePraisePageSearchRequest.cs 551 B

123456789101112131415161718192021222324
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Text;
  4. using GxPress.Common.Page;
  5. namespace GxPress.Request.ArticleAnalyze
  6. {
  7. /// <summary>
  8. /// 文章点赞分页数据
  9. /// </summary>
  10. public class ArticlePraisePageSearchRequest : PageParameter
  11. {
  12. /// <summary>
  13. /// 文章ID
  14. /// </summary>
  15. public int ArticleId { get; set; }
  16. /// <summary>
  17. /// 状态 0 文字 10 会议纪要
  18. /// </summary>
  19. /// <value></value>
  20. public int TypeValue{get;set;}
  21. }
  22. }