using System; using System.Collections.Generic; using System.Linq; using System.Threading.Tasks; namespace AX.FireTrainingSys.DTOs { /// /// 查询条件。 /// public class QueryOptions { /// /// 分页页数。 /// public int? PageNumber { get; set; } /// /// 一页多少条。 /// public int? PageSize { get; set; } /// /// 排序选项。 /// public string Sort { get; set; } } /// /// 分页结果集。 /// /// public class Page { /// /// 当前页。 /// public int PageNumber { get; set; } /// /// 每页个数。 /// public int PageSize { get; set; } /// /// 总页数。 /// public int TotalPages { get; set; } /// /// 总个数。 /// public int TotalCount { get; set; } /// /// 查询集合。 /// public IEnumerable Items { get; set; } } }