TASK:collection sort;

This commit is contained in:
shahaibo
2025-06-03 11:23:13 +08:00
parent 3bfbd8abc1
commit 112294bd7b
12 changed files with 110 additions and 66 deletions

View File

@@ -203,6 +203,12 @@ public class SavedCollectionController {
return Response.success(userLikeGroupService.productImageLike(productImageLikeDTO));
}
@ApiOperation(value = "collectionLikeUpdate")
@PostMapping("/collectionLikeUpdate")
public Response<Boolean> collectionLikeUpdate(@Valid @RequestBody CollectionLikeUpdateDTO collectionLikeUpdateDTO) {
return Response.success(userLikeGroupService.collectionLikeUpdate(collectionLikeUpdateDTO));
}
@ApiOperation(value = "productImageUnLike")
@PostMapping("/productImageUnLike")
public Response<Boolean> productImageUnLike(@Valid @RequestBody ProductImageLikeDTO productImageLikeDTO) {