/**
  * 创建评论
  *
  * @return
  */
 @RequestMapping(value = "mobile/activity/createatvcmt")
 public @ResponseBody String createAtvCmt(String phone, AtvCmt atvCmt) {
   return atvCmtServiceImpl.addAtvCmt(phone, atvCmt);
 }