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

cn.featherfly.common.structure.page.PaginationResults Maven / Gradle / Ivy

package cn.featherfly.common.structure.page;

import java.util.List;

/**
 * 

* 带结果集的分页模型 *

* * @param 存放的对象类型 * @author zhongj */ public interface PaginationResults extends Pagination { /** *

* 获取结果集 *

* * @return 结果集 */ List getPageResults(); /** *

* 设置结果集 *

* * @param pageReults 结果集 */ void setPageResults(List pageReults); /** *

* 获取结果集数量 *

* * @return 结果数量 */ Integer getResultSize(); }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy