DataPageMd.cs 411 B

12345678910111213141516171819
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. namespace NXWMS.Client.Model.AppModels.Condition.Common
  6. {
  7. public class DataPageMd
  8. {
  9. /// <summary>
  10. /// 页码
  11. /// </summary>
  12. public int PageNum { get; set; }
  13. /// <summary>
  14. /// 每页数量
  15. /// </summary>
  16. public int EveryPageQty { get; set; }
  17. }
  18. }