1、为发布的作品添加标签

2、修改标签
3、不允许用户重复参与活动
4、查询所有参与活动的作品
This commit is contained in:
2024-10-09 13:51:16 +08:00
parent f0e0987f31
commit 463ddf3cb2
16 changed files with 115 additions and 45 deletions

View File

@@ -118,10 +118,10 @@ public class PortfolioController {
return Response.success(portfolioService.commentDelete(commentDTO));
}
@ApiOperation(value = "按标签名查询作品")
/* @ApiOperation(value = "按标签名查询作品")
@GetMapping("/queryPortfolioByTag")
public Response<List<PortfolioVO>> queryPortfolioByTag(@RequestParam(value = "tagName", required = false) String tagName,
@RequestParam(value = "tagId", required = false) Long tagId) {
return Response.success(portfolioService.queryPortfolioByTag(tagName, tagId));
}
}*/
}