123456789101112131415161718192021222324 |
- using System;
- using System.Collections.Generic;
- using System.Text;
- using GxPress.Common.Page;
- namespace GxPress.Request.ArticleAnalyze
- {
- /// <summary>
- /// 文章点赞分页数据
- /// </summary>
- public class ArticlePraisePageSearchRequest : PageParameter
- {
- /// <summary>
- /// 文章ID
- /// </summary>
- public int ArticleId { get; set; }
- /// <summary>
- /// 状态 0 文字 10 会议纪要
- /// </summary>
- /// <value></value>
- public int TypeValue{get;set;}
- }
- }
|