|
@@ -444,5 +444,14 @@ public class SocialController extends BaseController {
|
444
|
444
|
return response;
|
445
|
445
|
}
|
446
|
446
|
|
|
447
|
+ @ApiOperation(value = "查询点赞次数", notes = "查询点赞次数")
|
|
448
|
+ @ApiImplicitParams({@ApiImplicitParam(paramType = "path", dataType = "integer", name = "id", value = "帖子id")})
|
|
449
|
+ @RequestMapping(value = "/transactionLikeList/{id}", method = RequestMethod.GET)
|
|
450
|
+ public ResponseBean transactionLikeList(@PathVariable("id") Integer id,HttpSession session) {
|
|
451
|
+ UserElement userElement = (UserElement) session.getAttribute(Constant.APP_USER_SESSION);
|
|
452
|
+ ResponseBean transactionLike = socialServiceI.transactionLikeList(id,userElement);
|
|
453
|
+ return transactionLike;
|
|
454
|
+ }
|
|
455
|
+
|
447
|
456
|
|
448
|
457
|
}
|