namespace EasyTemplate.Tool.Entity;
///
/// 分页列表
///
///
public class PageList
{
///
/// 列表
///
public List Data { get; set; } = new List();
///
/// 总数
///
public int Total { get; set; } = 0;
}
public class QueryBase
{
///
/// 页码,必须从1开始
///
public int Pi { get; set; } = 1;
///
/// 每页数据量
///
public int Ps { get; set; } = 20;
}
public class BaseId
{
public int Id { get; set; }
}