sunshine
2024-11-05 0d71954001d47e92683a508f43ea31c3bf822ffb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
package com.nova.sankuai.infra.utils;
 
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
 
/**
 * @author weikangdi
 */
@ApiModel("分页查询")
@Data
public class PageRequest {
 
    @ApiModelProperty(value = "页码,默认1", example = "1")
    private Integer pageNo = 1;
 
    @ApiModelProperty(value = "每页条,默认10", example = "10")
    private Integer pageSize = 10;
}