Example #1
0
 /** 说说点赞/取消赞 */
 public Map praiseOrCancel(IpavcommentEntity comment) {
   addSayComment(comment);
   Map rtn = new HashMap<String, Object>();
   List<Map> listMap =
       searchPraiseUser(comment.getActionid(), comment.getActiontype(), null, null, 1);
   rtn.put("userList", listMap);
   rtn.put("size", commReplyService.queryPraiseOrCommentCount(1, comment.getActionid(), 0));
   return rtn;
 }