Commit b2608286 authored by macro's avatar macro
Browse files

Update MemberProductCollectionController.java

parent 868d8ddd
...@@ -48,7 +48,7 @@ public class MemberProductCollectionController { ...@@ -48,7 +48,7 @@ public class MemberProductCollectionController {
} }
} }
@ApiOperation("显示商品收藏列表") @ApiOperation("显示当前用户商品收藏列表")
@RequestMapping(value = "/list", method = RequestMethod.GET) @RequestMapping(value = "/list", method = RequestMethod.GET)
@ResponseBody @ResponseBody
public CommonResult<CommonPage<MemberProductCollection>> list(@RequestParam(value = "pageNum", defaultValue = "1") Integer pageNum, public CommonResult<CommonPage<MemberProductCollection>> list(@RequestParam(value = "pageNum", defaultValue = "1") Integer pageNum,
...@@ -65,7 +65,7 @@ public class MemberProductCollectionController { ...@@ -65,7 +65,7 @@ public class MemberProductCollectionController {
return CommonResult.success(memberProductCollection); return CommonResult.success(memberProductCollection);
} }
@ApiOperation("清空商品收藏列表") @ApiOperation("清空当前用户商品收藏列表")
@RequestMapping(value = "/clear", method = RequestMethod.POST) @RequestMapping(value = "/clear", method = RequestMethod.POST)
@ResponseBody @ResponseBody
public CommonResult clear() { public CommonResult clear() {
......
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment