@ResponseBody
 @RequestMapping("getAllMailLogs")
 public String getAllMailLogs(int page, int rows) {
   HashMap hm = emailLogsService.getPageList(page, rows);
   return JsonUtil.getJson(hm);
 }