摘要:
//使用分页 //1.计算总页数, StudentBizImpl bb = new StudentBizImpl(); int pageSize = 5;//每页显示记录数 int count = bb.getStudentCount();//总记录数计算总页数 int totalpages= (count%pageSize ==0)?(count/pageSize):(count/pageSi... 阅读全文
posted @ 2019-07-01 18:52
薛定谔de猫-_-
阅读(390)
评论(0)
推荐(0)