赞
踩
- /**
- * 工具类
- * @author yumin
- *
- */
- public class PageCalculator {
- /**
- * pageIndex 转换为rowIndex
- * @param pageIndex
- * @param pageSize
- * @return
- */
- public static int calculatorRowIndex(int pageIndex, int pageSize ){
- int rowIndex = (pageIndex>0)?(pageIndex -1 )*pageSize :0;
- return rowIndex;
-
- }
-
-
- }

Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。