using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Myshipping.Application
{
public class QueryTaskManageBaseDto
{
///
/// 当前页码
///
/// 1
public int PageNo { get; set; } = 1;
///
/// 页码容量
///
/// 20
public int PageSize { get; set; } = 20;
///
/// 排序字段
///
///
public string SortField { get; set; }
///
/// 排序方法,默认降序
///
/// true
public bool descSort { get; set; } = true;
}
}