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

io.vilya.common.bean.req.QueryBean Maven / Gradle / Ivy

The newest version!
package io.vilya.common.bean.req;

/**
 * @author iamaprin
 * @since 2018年3月19日 上午12:15:05
 */
public class QueryBean {

	private Integer currentPage;
	
	private Integer pageSize;

	public Integer getCurrentPage() {
		return currentPage;
	}

	public void setCurrentPage(Integer currentPage) {
		this.currentPage = currentPage;
	}

	public Integer getPageSize() {
		return pageSize;
	}

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy