25

来源:互联网 发布:ps软件下载官方网站 编辑:程序博客网 时间:2024/06/10 19:33
  /**
     * <构造二级审核人页面显示的JSON参数>
     * <功能详细描述>
     * @param pageSize
     * @param currentPage
     * @throws JSONException [参数说明]
     *
     * @return void [返回类型说明]
     * @exception throws [违例类型] [违例说明]
     * @see [类、类#方法、类#成员]
     */
    private JSONObject paging(String pageSize, String currentPage, JSONObject sJson) throws JSONException
    {
        if (null != pageSize && !"".equals(pageSize.trim()) && null != currentPage && !"".equals(currentPage.trim()))
        {
            int currentPageInt = Integer.parseInt(currentPage.trim());
            int pageSizeInt = Integer.parseInt(pageSize.trim());
            sJson.put("ROWNUM_LOW",(currentPageInt-1)*pageSizeInt+1);
            sJson.put("ROWNUM_HIGH",pageSizeInt*currentPageInt);
        }
        else
        {
            sJson.put("ROWNUM_LOW",CheckConstant.DEFAULT_FIRST_RECORD_INDEX);
            sJson.put("ROWNUM_HIGH",CheckConstant.DEFAULT_PAGE_SIZE);
        }
        return sJson;
    }
}
原创粉丝点击