| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107 | using System;using System.Collections.Generic;using System.Data;using System.Linq;using System.Text;using System.Threading.Tasks;namespace WCS_Client{    public class PageData    {        int _PageIndex = 0;        /// <summary>        /// 页码        /// </summary>        public int PageIndex        {            get            {                return _PageIndex;            }            set            {                _PageIndex = value;            }        }        int _PageSize = 0;        /// <summary>        /// 分页尺寸        /// </summary>        public int PageSize        {            get            {                return _PageSize;            }            set            {                _PageSize = value;            }        }        int _PageCount = 0;        /// <summary>        /// 总页数        /// </summary>        public int PageCount        {            get            {                return _PageCount;            }            set            {                _PageCount = value;            }        }        int _RowsCount = 0;        /// <summary>        /// 总记录数        /// </summary>        public int RowsCount        {            get            {                return _RowsCount;            }            set            {                _RowsCount = value;            }        }        string _DisplayText = "";        /// <summary>        /// 其他汇总数据文本        /// </summary>        public string DisplayText        {            get            {                return _DisplayText;            }            set            {                _DisplayText = value;            }        }        DataTable _Dt = null;        /// <summary>        /// 分页数据        /// </summary>        public DataTable Dt        {            get            {                return _Dt;            }            set            {                _Dt = value;            }        }    }}
 |