* @return
* @throws Exception
*/
public ActionForward queryAreaDatas4Paging(ActionMapping mapping, ActionForm form, HttpServletRequest request,
HttpServletResponse response) throws Exception {
BaseActionForm aForm = (BaseActionForm) form;
Dto dto = aForm.getParamAsDto(request);
//System.out.println(dto);
List areaList = g4Reader.queryForPage("Demo.getChinaDataArea4Paging", dto);
Integer totalInteger = (Integer) g4Reader.queryForObject("Demo.getChinaDataArea4PagingForPageCount", dto);
String jsonString = encodeList2PageJson(areaList, totalInteger, null);
write(jsonString, response);