sqlsugar/Src/Asp.NetCore2/SqlSugar/Entities/PageModel.cs

19 lines
375 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 TotalCount { get; set; }
}
}