StableVersion4.3/HL_FristAidPlatform_DTO/EcgInterface/PageInputContext.cs

15 lines
329 B
C#

namespace HL_FristAidPlatform_DTO
{
public class PageInputContext
{
/// <summary>
/// 当前页码
/// </summary>
public int currPageIndex { get; set; }
/// <summary>
/// 每页最大记录数
/// </summary>
public int recordNumPer { get; set; }
}
}