old_flsystem/类库/SqlSugar/Entities/PageModel.cs

19 lines
374 B
C#
Raw Permalink Normal View History

2022-09-20 03:10:29 +00:00
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; }
}
}