using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace MES.Production.Entity
{
public class PageModel: BaseResponseModel
{
private int _totalNum;
public PageModel()
{
}
///
/// 总条数
///
public int totalNum
{
get { return _totalNum; }
set { _totalNum = value; }
}
///
/// 当前页
///
public int currentPage { get; set; }
///
/// 每页显示总条数
///
public int pageSize{ get; set; }
}
}