添加项目文件。
This commit is contained in:
32
Epost.Model/DataPagerModel.cs
Normal file
32
Epost.Model/DataPagerModel.cs
Normal file
@ -0,0 +1,32 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace Epost.Model
|
||||
{
|
||||
public class DataPagerModel
|
||||
{
|
||||
/// <summary>
|
||||
/// 每页行数
|
||||
/// </summary>
|
||||
public int rows { get; set; }
|
||||
/// <summary>
|
||||
/// 当前页是第几页,第一页就是1
|
||||
/// </summary>
|
||||
public int page { get; set; }
|
||||
/// <summary>
|
||||
/// 排序方式
|
||||
/// </summary>
|
||||
public string order { get; set; }
|
||||
/// <summary>
|
||||
/// 排序列
|
||||
/// </summary>
|
||||
public string sort { get; set; }
|
||||
/// <summary>
|
||||
/// 总行数
|
||||
/// </summary>
|
||||
public int totalRows { get; set; }
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user