@Action(value = "/remark/getRemarkInfo")
 public String getAllRemarkInfo() {
   result = new JSONObject();
   array = new JSONArray();
   List<RemarkInfo> reinfos = remarkInfoService.getAllRemarkInfo();
   Entity2JSONUtil.RemarkInfo2JSON(reinfos, array);
   result.put("total", reinfos.size());
   result.put("rows", array);
   return "json";
 }