using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace POSV.Proxy.Common { public class PageObject { //==========================私有=========================== /// /// 总页数 /// private int m_PageCount = 0; /// /// 当前页码 /// private int m_PageNumber = 1; /// /// 总条数 /// private int m_TotalCount = 0; /// /// 每页显示 /// private int m_PageSize = 999; //==========================共有=========================== /// /// 总页数 /// public int PageCount { get => m_PageCount; set => m_PageCount = value; } /// /// 当前页码 /// public int PageNumber { get => m_PageNumber; set => m_PageNumber = value; } /// /// 总条数 /// public int TotalCount { get => m_TotalCount; set => m_TotalCount = value; } /// /// 每页显示(默认10条) /// public int PageSize { get => m_PageSize; set => m_PageSize = value; } } }