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.
55 lines
890 B
55 lines
890 B
3 years ago
|
namespace EC.Service.Base
|
||
|
{ /// <summary>
|
||
|
/// 分页参数
|
||
|
/// </summary>
|
||
|
public class Pagination
|
||
|
{
|
||
|
/// <summary>
|
||
|
/// 每页行数
|
||
|
/// </summary>
|
||
|
public int rows { get; set; }
|
||
|
|
||
|
/// <summary>
|
||
|
/// 当前页
|
||
|
/// </summary>
|
||
|
public int page { get; set; }
|
||
|
|
||
|
/// <summary>
|
||
|
/// 排序列
|
||
|
/// </summary>
|
||
|
public string sidx { get; set; }
|
||
|
|
||
|
/// <summary>
|
||
|
/// 排序类型
|
||
|
/// </summary>
|
||
|
public string sord { get; set; }
|
||
|
|
||
|
/// <summary>
|
||
|
/// 总记录数
|
||
|
/// </summary>
|
||
|
public int records { get; set; }
|
||
|
|
||
|
/// <summary>
|
||
|
/// 总页数
|
||
|
/// </summary>
|
||
|
public int total
|
||
|
{
|
||
|
get
|
||
|
{
|
||
|
if (records > 0)
|
||
|
{
|
||
|
return records % this.rows == 0 ? records / this.rows : records / this.rows + 1;
|
||
|
}
|
||
|
else
|
||
|
{
|
||
|
return 0;
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
|
||
|
/// <summary>
|
||
|
/// 查询条件Json
|
||
|
/// </summary>
|
||
|
public string conditionJson { get; set; }
|
||
|
}
|
||
|
}
|