using SqlSugar; using System; using System.Collections.Generic; using System.Text; namespace ReZero.SuperAPI { /// /// Represents a common page with page number, page size, and total count. /// public class DataModelPageParameter { /// /// Gets or sets the page number. /// public int PageNumber { get; set; } /// /// Gets or sets the page size. /// public int PageSize { get; set; } /// /// Gets or sets the total count. /// public int Total { get; set; } public RefAsync? TotalCount { get; set; } public int TotalPage { get; internal set; } } }