using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace MES.Production.Entity { public class PageQuery { public PageQuery() { page = 1; pageSize = 20; } /// /// 当前页数 /// public int page { set; get; } /// /// 每页显示总条数 /// public int pageSize { set; get; } } }