Files
AntSK/Xzy.KnowledgeBase.Domain/Model/PageList.cs
2024-02-01 23:12:53 +08:00

27 lines
614 B
C#
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Xzy.KnowledgeBase.Domain.Model
{
public class PageList<T>
{
//查询结果
public List<T> List { get; set; }
/// <summary>
/// 当前页从1开始
/// </summary>
public int PageIndex { get; set; }
/// <summary>
/// 每页数量
/// </summary>
public int PageSize { get; set; }
/// <summary>
/// 总数
/// </summary>
public int TotalCount { get; set; }
}
}