| 1234567891011121314151617181920212223242526272829303132333435363738 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace RMYY_CallCenter_Api.Model
- {
- public class PageData<T> where T : class, new()
- {
- /// <summary>
- /// 总记录数
- /// </summary>
- public int Total { get; set; }
- /// <summary>
- /// 当前页数据集合
- /// </summary>
- public List<T> Rows { get; set; }
- /// <summary>
- /// 页数
- /// </summary>
- public int Count { get; set; }
- public PageData()
- {
- }
- public PageData(int Total, int Count, List<T> Rows = null)
- {
- this.Total = Total;
- this.Count = Count;
- this.Rows = Rows;
- }
- }
- }
|