rentaiming
2024-06-03 614dc674db66c2d1444a0b75957fbde960f48800
ruoyi-modules/ruoyi-goods/src/main/java/com/ruoyi/goods/controller/forepart/ForepartMemberGoodsCollectionController.java
@@ -30,14 +30,12 @@
    private IMemberGoodsCollectionService iMemberGoodsCollectionService;
    @PostMapping("/saveGoodsCollection")
    @ResponseBody
    @ApiOperation(value = "用户端-商品收藏和取消收藏")
    public R saveAuctionCollection(@RequestBody AuctionCollectionDTO auctionCollectionDTO) {
        iMemberGoodsCollectionService.saveGoodsCollection(auctionCollectionDTO);
        return R.ok();
    }
    @PostMapping("/getGoodsCollectionList")
    @ResponseBody
    @ApiOperation(value = "用户端-商品收藏列表")
    public R<PageDTO<HomeGoodsSkuListVO>> getGoodsCollectionList(@RequestBody AuctionCollectionDTO auctionCollectionDTO) {
        return R.ok(iMemberGoodsCollectionService.getGoodsCollectionList(auctionCollectionDTO));