using System; using System.Collections; using System.Collections.Generic; /// /// 查询选项。 /// [Serializable] public class QueryOptions { /// /// 查询名称。 /// public string Name { get; set; } /// /// 排序方式。 /// public string SortBy { get; set; } /// /// 排序字段。 /// public string OrderBy { get; set; } /// /// 分页页数。 /// public int PageNumber { get; set; } /// /// 分页大小。 /// public int PageSize { get; set; } } /// /// 分页结果集。 /// /// [Serializable] public class PagedSet { /// /// 数据集。 /// public IEnumerable DbSet { get; set; } /// /// 分页页数。 /// public int PageNumber { get; set; } /// /// 分页大小。 /// public int PageSize { get; set; } /// /// 总共多少页。 /// public int Pages { get; set; } }