wzp
2021-07-19 e65183d31755a0e5fae4bf428435d2e0fd6afdc5
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
 
namespace FineAdmin.Model
{
    public class PageInfo
    {
        //当前页码
        public int page { get; set; }
        //每页数据量
        public int limit { get; set; }
        //排序字段
        public string field { get; set; }
        //排序方式
        public string order { get; set; }
        //返回字段逗号分隔
        public string returnFields { get; set; }
        public string prefix { get; set; }
    }
}