|
@@ -43,6 +43,8 @@ public class WebsiteTourismProjectTravelNotesController {
|
|
|
private TourTravelNotesProjectRelationService tourTravelNotesProjectRelationService;
|
|
|
@Autowired
|
|
|
private TourismProjectService tourismProjectService;
|
|
|
+ @Autowired
|
|
|
+ private TourTourismProjectTravelNotesService tourTourismProjectTravelNotesService;
|
|
|
|
|
|
|
|
|
/**
|
|
@@ -168,7 +170,7 @@ public class WebsiteTourismProjectTravelNotesController {
|
|
|
|
|
|
/**
|
|
|
* 相关项目
|
|
|
- * param
|
|
|
+ * param travelNotesId 游记id
|
|
|
* @return 应答结果对象,包含查询结果集。
|
|
|
*/
|
|
|
@OperationLog(type = SysOperationLogType.LIST)
|
|
@@ -188,4 +190,19 @@ public class WebsiteTourismProjectTravelNotesController {
|
|
|
return ResponseResult.success(tourismProjectService.getInList(new HashSet<>(relateProjectList)));
|
|
|
}
|
|
|
}
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 获取点赞数量
|
|
|
+ * param travelNotesId 游记id
|
|
|
+ * @return 应答结果对象,包含查询结果集。
|
|
|
+ */
|
|
|
+ @OperationLog(type = SysOperationLogType.LIST)
|
|
|
+ @GetMapping("/getLikeCount")
|
|
|
+ public ResponseResult<Integer> getLikeCount(@RequestParam(required = true) Long travelNotesId) {
|
|
|
+
|
|
|
+ TourTourismProjectTravelNotes tourTourismProjectTravelNotes = tourTourismProjectTravelNotesService.getById(travelNotesId);
|
|
|
+ return ResponseResult.success(tourTourismProjectTravelNotes.getLikeCount());
|
|
|
+ }
|
|
|
}
|