创建公共分页参数类Common/GridPager.cs

using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;

namespace MVCSystem.Web.Common
{
    public class GridPager
    {
        public int limit{ get; set; }//每页行数
        public int pageIndex { get; set; }//当前页是第几页
      
    }
}
View Code

相关文章:

  • 2022-12-23
  • 2022-12-23
  • 2022-03-01
  • 2021-05-03
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
猜你喜欢
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
相关资源
相似解决方案