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

com.mizhousoft.commons.data.constant.PaginationConstants Maven / Gradle / Ivy

package com.mizhousoft.commons.data.constant;

/**
 * 分页常量
 * 
 * @version
 */
public interface PaginationConstants
{
	// 默认页大小
	int DEFAULT_PAGE_SIZE = 20;

	// 默认页大小
	String DEFAULT_PAGE_SIZE_STRING = "20";

	// 小的页大小
	int SMALL_PAGE_SIZE = 10;

	// 小的页大小
	String SAMLL_PAGE_SIZE_STRING = "10";

	// 默认页数
	int DEFAULT_PAGE_NUMBER = 1;

	// 默认页数
	String DEFAULT_PAGE_NUMBER_STRING = "1";
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy