摘要: package com.weilai.swmf.page;public class Page { private int rowCount;//总行数 private int pagesize = 10;//每页显示的数据记录 private int curPage;//当前页 public int getRowCount() { return rowCount; } public void setRowCount(int rowCount) { this.rowCount = rowCount; } public int getPagesize() { return ... 阅读全文
posted @ 2014-03-13 16:21 别逗我 阅读(321) 评论(0) 推荐(0) 编辑