* @param
* @return
*/
public ActionForward queryParamsForManage(ActionMapping mapping, ActionForm form, HttpServletRequest request,
HttpServletResponse response) throws Exception {
BaseActionForm aForm = (BaseActionForm) form;
Dto dto = aForm.getParamAsDto(request);
List paramList = g4Reader.queryForPage("Param.queryParamsForManage", dto);
Integer pageCount = (Integer)g4Reader.queryForObject("Param.queryParamsForManageForPageCount", dto);
String jsonString = JsonHelper.encodeList2PageJson(paramList, pageCount, null);
write(jsonString, response);
return mapping.findForward(null);