lige
2024-04-18 ed277ece348dae9bc6e36c0fc9f69ae8a3825912
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);
    }
}