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

com.simple.orm.domain.Pageable Maven / Gradle / Ivy

package com.simple.orm.domain;

/**
 * 页面请求分页的工具包
 */
public interface Pageable {

    /**
     * 获取每一页显示的条数
     * @return 返回每一页显示的条数
     */
    Integer getPageSize();

    /**
     * 获取当前页的开始条数
     * @return 当前页的开始条数
     */
    Integer getOffset();

    /**
     * 获取当前页码
     * @return 返回当前的页码
     */
    Integer getCurrentPageNum();
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy