TASK:cloud;

This commit is contained in:
shahaibo
2025-06-12 13:41:13 +08:00
parent 33af9d0b9d
commit 4494ec7dbc
3 changed files with 16 additions and 0 deletions

View File

@@ -197,6 +197,12 @@ public class SavedCollectionController {
return Response.success(userLikeGroupService.toProductImageElementUpload(file, projectId));
}
@ApiOperation(value = "toProductImageElementDelete")
@PostMapping("/toProductImageElementDelete")
public Response<Boolean> toProductImageElementDelete(@RequestParam(value = "id") Long id) {
return Response.success(userLikeGroupService.toProductImageElementDelete(id));
}
@ApiOperation(value = "productImageLike")
@PostMapping("/productImageLike")
public Response<Long> productImageLike(@Valid @RequestBody ProductImageLikeDTO productImageLikeDTO) {