19 lines
374 B
C#
19 lines
374 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace SqlSugar
|
|
{
|
|
public class PageModel
|
|
{
|
|
public int PageIndex { get; set; }
|
|
public int PageSize { get; set; }
|
|
/// <summary>
|
|
/// output
|
|
/// </summary>
|
|
public int PageCount { get; set; }
|
|
}
|
|
}
|