You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
- namespace BPA.MES.Base.Core
- {
- /// <summary>
- /// 名 称 :分页基础类
- /// 创 建 人 :yangxiao
- /// 创建时间 : 2023/3/2 16:15:41
- /// 描 述 :
- /// </summary>
- public class RequestPage
- {
- /// <summary>
- /// 页码
- /// </summary>
- /// <example>1</example>
- public int PageIndex { get; set; }
- /// <summary>
- /// 页大小
- /// </summary>
- /// <example>10</example>
- public int PageSize { get; set; }
- }
- }
|