阅读背景:

ssm框架查询数据并实现分页功能示例

来源:互联网 
/**
 * DataGrid对象
 * 
 */
@SuppressWarnings("rawtypes")
public class DataGrid {
	private int total = 0;
	private List rows = new ArrayList();
	public int getTotal() {
		return total;//数据总数
	}
	public void setTotal(int total) {
		this.total = total;
	}
	public List getRows() {
		return rows;//页面显示的数据
	}
	public void setRows(List rows) {
		this.rows = rows;
	}
}
/**
 * DataGrid对象
 * 
 */
@SuppressWarnings



你的当前访问异常,请进行认证后继续阅读剩余内容。

分享到: