12345678910111213141516171819202122232425 |
- using System;
- using System.Collections.Generic;
- using System.Text;
- using GxPress.Common.Page;
- namespace GxPress.Request.NoticeComment
- {
- /// <summary>
- /// 评论分页
- /// </summary>
- public class NoticeCommentSearchPageRequest : PageParameter
- {
- /// <summary>
- /// 通知Id
- /// </summary>
- public int NoticeId { get; set; }
- /// <summary>
- /// 条数
- /// </summary>
- /// <value></value>
- public int Total{get;set;}
- }
- }
|