Files
T-DAS/Epost.Model/DataPagerModel.cs
2023-01-13 15:30:20 +08:00

32 lines
762 B
C#
Raw Permalink 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 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; }
}
}