| | |
| | | package com.ruoyi.common.core.page; |
| | | |
| | | import io.swagger.v3.oas.annotations.media.Schema; |
| | | |
| | | import java.io.Serializable; |
| | | |
| | | @Schema(name = "基础查询列表dto") |
| | | //@Schema(name = "基础查询列表dto") |
| | | public class BasePage implements Serializable { |
| | | |
| | | private static final long serialVersionUID = -6677391205868835849L; |
| | | /** |
| | | * 分页参数,当前页码 |
| | | */ |
| | | @Schema(name = "分页参数,当前页码") |
| | | //@Schema(name = "分页参数,当前页码") |
| | | private Integer pageCurr = 1; |
| | | /** |
| | | * 分页参数,每页数量 |
| | | */ |
| | | @Schema(name = "分页参数,每页数量,默认为10") |
| | | //@Schema(name = "分页参数,每页数量,默认为10") |
| | | private Integer pageSize = 10; |
| | | |
| | | public Integer getPageCurr() { |