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

com.wichell.framework.pagination.Criteria Maven / Gradle / Ivy

package com.wichell.framework.pagination;

/**
 * 分页查询条件接口
 * 
 *
 */
public interface Criteria {
	/**
	 * 
	 * @return 第几页
	 */
	public Long getPage();
	
	/**
	 * 
	 * @return 每页记录数
	 */
	public Long getPageSize();
	
	public String getSort();
	
	public String getOrder();
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy