|
@@ -77,6 +77,14 @@ public class WebController {
|
|
|
return Result.success(myBaseMapper.getVisit("star"));
|
|
|
}
|
|
|
|
|
|
+ @WebControllerLog(description = "门户网站-取消场景点赞")
|
|
|
+ @ApiOperation("场景-取消点赞")
|
|
|
+ @GetMapping("scene/starCancel/{num}")
|
|
|
+ public Result sceneStarCancel(@PathVariable Integer num){
|
|
|
+ myBaseMapper.cancelVisitAndNum("star", num);
|
|
|
+ return Result.success();
|
|
|
+ }
|
|
|
+
|
|
|
@WebControllerLog(description = "门户网站-获取点赞")
|
|
|
@ApiOperation("场景-获取点赞")
|
|
|
@GetMapping("scene/getStar")
|