コード例 #1
0
 /**
  * 删除
  *
  * @param param
  * @return
  * @throws Exception
  */
 @ResponseBody
 @RequestMapping(value = "/delete", method = RequestMethod.POST)
 public JsonMessage delete(ClientParameter param) throws Exception {
   Map<String, String> map = ParameterUtils.getMapFromParameter(param);
   articleCateService.delete(MapUtils.getString(map, "refrenceId"));
   return super.getJsonMessage(ClientConst.SUCCESS);
 }