NoticeCommentPageRequest.cs 477 B

12345678910111213141516171819202122232425
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Text;
  4. using GxPress.Common.Page;
  5. namespace GxPress.Request.NoticeComment
  6. {
  7. /// <summary>
  8. /// 评论分页
  9. /// </summary>
  10. public class NoticeCommentSearchPageRequest : PageParameter
  11. {
  12. /// <summary>
  13. /// 通知Id
  14. /// </summary>
  15. public int NoticeId { get; set; }
  16. /// <summary>
  17. /// 条数
  18. /// </summary>
  19. /// <value></value>
  20. public int Total{get;set;}
  21. }
  22. }