12345678910111213141516171819 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- namespace NXWMS.Client.Model.AppModels.Condition.Common
- {
- public class DataPageMd
- {
- /// <summary>
- /// 页码
- /// </summary>
- public int PageNum { get; set; }
- /// <summary>
- /// 每页数量
- /// </summary>
- public int EveryPageQty { get; set; }
- }
- }
|