liulin
2024-07-30 ce04dfcdd664df7e791a63800cab2cd2d12e878c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
package com.lunhan.xxx.entity.dto;
 
/**
 * 分页基本属性 dto
 * @Author lin.liu
 * @Description 分页基本属性 dto
 * @Date 2021/4/7
 **/
public class PagerBasicDTO {
    /**
     * 最后一条记录的id
     * @ignore
     */
    private Long lastRowNo;
    /**
     * 页大小(每页返回的记录条数)
     */
    private Integer limit;
    /**
     * 页号(第几页,从1开始)
     */
    private Integer page;
 
    public Long getLastRowNo() {
        return lastRowNo;
    }
 
    public void setLastRowNo(Long lastRowNo) {
        this.lastRowNo = lastRowNo;
    }
 
    public Integer getLimit() {
        return limit;
    }
 
    public void setLimit(Integer limit) {
        this.limit = limit;
    }
 
    public Integer getPage() {
        return page;
    }
 
    public void setPage(Integer page) {
        this.page = page;
    }
}