All Downloads are FREE. Search and download functionalities are using the official Maven repository.

io.afu.baseframework.dto.req.PageBase Maven / Gradle / Ivy

package io.afu.baseframework.dto.req;

import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;

/**
 * @author RffanLAB.方露宇
 * @version 0.1
 */
@ApiModel("分页实体类")
public class PageBase {

    @ApiModelProperty("每页数量")
    private Integer pageSize;

    @ApiModelProperty("页码")
    private Integer pageNum;

    public Integer getPageSize() {
        return pageSize;
    }

    public void setPageSize(Integer pageSize) {
        this.pageSize = pageSize;
    }

    public Integer getPageNum() {
        return pageNum;
    }

    public void setPageNum(Integer pageNum) {
        this.pageNum = pageNum;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy