25 lines
508 B
C#
25 lines
508 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace WGShare.Domain.GeneralModel
|
|
{
|
|
/// <summary>
|
|
/// 分页查询基础DTO
|
|
/// </summary>
|
|
public class PagedBaseDto
|
|
{
|
|
/// <summary>
|
|
/// 当前页码
|
|
/// </summary>
|
|
public int PageIndex { get; set; } = 1;
|
|
|
|
/// <summary>
|
|
/// 分页大小
|
|
/// </summary>
|
|
public int PageSize { get; set; } = 10;
|
|
}
|
|
}
|