using System; using System.Collections.Generic; using System.Linq; using System.Threading.Tasks; namespace LangGuan.Command.Model { /// /// 分页数据 /// public class Paging { /// /// Gets or sets CurrentPageIndex. /// public int CurrentPageIndex { get; set; } /// /// Gets or sets PageCount. /// public int Total { get; set; } /// /// data /// public List Items { get; set; } } /// /// 分页参数 /// public class RqeustPaging { /// /// Gets or sets CurrentPageIndex. /// public int current { get; set; } = 1; /// /// Gets or sets PageCount. /// public int pageSize { get; set; } = 10; } }