using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace IoTIntegrationPlatform.Model.common
{
public class PageParm
{
///
/// 当前页
///
public int PageIndex { get; set; } = 1;
///
/// 每页总条数
///
public int PageSize { get; set; } = 10;
///
/// 排序字段
///
public string OrderBy { get; set; }
///
/// 排序方式 asc/desc 升序/降序
///
public string Sort { get; set; }
///
/// 是否分页
///
public bool IsPaging { get; set;} = true;
}
}