You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
31 lines
675 B
31 lines
675 B
using System;
|
|
using System.Collections.Generic;
|
|
|
|
namespace EasyNet.Common
|
|
{
|
|
public class PageResult
|
|
{
|
|
/// <summary>
|
|
/// 分页查询中总记录数
|
|
/// </summary>
|
|
public int Total { get; set; }
|
|
|
|
/// <summary>
|
|
/// 分页查询中结果集合
|
|
/// </summary>
|
|
public Object DataList { get; set; }
|
|
}
|
|
|
|
public class PageResult<T>
|
|
{
|
|
/// <summary>
|
|
/// 分页查询中总记录数
|
|
/// </summary>
|
|
public int Total { get; set; }
|
|
|
|
/// <summary>
|
|
/// 分页查询中结果集合
|
|
/// </summary>
|
|
public List<T> DataList { get; set; }
|
|
}
|
|
}
|