package com.nanjing.water.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; } }