2023-08-17 18:10:07 +08:00
|
|
|
package com.zhgd.xmgl.entity;
|
2023-02-16 15:28:15 +08:00
|
|
|
|
|
|
|
|
import io.swagger.annotations.ApiModel;
|
|
|
|
|
import io.swagger.annotations.ApiModelProperty;
|
|
|
|
|
import lombok.Data;
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* @author 邱平毅
|
|
|
|
|
* @ClassName PageQO
|
|
|
|
|
* @date 2022/8/19 14:48
|
|
|
|
|
* @Version 1.0
|
|
|
|
|
*/
|
|
|
|
|
@Data
|
|
|
|
|
@ApiModel(value = "分页请求对象", description = "分页请求对象")
|
|
|
|
|
public class PageQO {
|
|
|
|
|
@ApiModelProperty(value = "当前页")
|
|
|
|
|
private Integer pageNo = 1;
|
|
|
|
|
@ApiModelProperty(value = "每页数量")
|
|
|
|
|
private Integer pageSize = 10;
|
|
|
|
|
}
|