1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
| package com.ltkj.tduck.domain;
|
| import com.baomidou.mybatisplus.extension.plugins.pagination.Page;
| import lombok.Data;
|
| /**
| * @author : smalljop
| * @description : 分页
| * @create : 2020-12-09 10:47
| **/
| @Data
| public class PageRequest {
|
| private long current = 1;
| private long size = 50;
|
|
| public Page toMybatisPage() {
| return new Page(current, size);
| }
| }
|
|