⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 pagination.java

📁 struts+spring+hibernate例子
💻 JAVA
字号:
package com.shop.data;

import java.util.List;

/**
 * 分页信息类
 *
 */
public class Pagination {
	/**
	 * 首页
	 */
	private Page first;
	/**
	 * 上一页
	 */
	private Page previous;
	/**
	 * 每页详细集合
	 */
	private List<Page>  content;
	/**
	 * 下一页
	 */
	private Page next;
	/**
	 * 最后一页
	 */
	private Page last;
	
	
	public Page getPrevious() {
		return previous;
	}
	public void setPrevious(Page previous) {
		this.previous = previous;
	}
	public List<Page> getContent() {
		return content;
	}
	public void setContent(List<Page> content) {
		this.content = content;
	}
	public Page getNext() {
		return next;
	}
	public void setNext(Page next) {
		this.next = next;
	}
	public Page getFirst() {
		return first;
	}
	public void setFirst(Page first) {
		this.first = first;
	}
	public Page getLast() {
		return last;
	}
	public void setLast(Page last) {
		this.last = last;
	}
	

}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -