Package com.fins.gt.model

Examples of com.fins.gt.model.PageInfo


   
    return info;
  }

  public static PageInfo createPageInfo(JSONObject modelJS){
    PageInfo info=new PageInfo();
   
    info.setEndRowNum(modelJS.getInt("endRowNum",Const.nullInt));
    info.setPageNum(modelJS.getInt("pageNum",Const.nullInt));
    info.setPageSize(modelJS.getInt("pageSize",Const.nullInt));
    info.setStartRowNum(modelJS.getInt("startRowNum",Const.nullInt));
    info.setTotalPageNum(modelJS.getInt("totalPageNum",Const.nullInt));
    info.setTotalRowNum(modelJS.getInt("totalRowNum",Const.nullInt));
   
    return info;
  }
View Full Code Here

TOP

Related Classes of com.fins.gt.model.PageInfo

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.