parent
f5437acce4
commit
c31103794c
@ -1,75 +0,0 @@
|
||||
package com.macro.mall.portal.controller;
|
||||
|
||||
import com.macro.mall.common.api.CommonPage;
|
||||
import com.macro.mall.common.api.CommonResult;
|
||||
import com.macro.mall.portal.domain.MemberProductCollection;
|
||||
import com.macro.mall.portal.service.MemberCollectionService;
|
||||
import io.swagger.annotations.Api;
|
||||
import io.swagger.annotations.ApiOperation;
|
||||
import io.swagger.v3.oas.annotations.tags.Tag;
|
||||
import org.springframework.beans.factory.annotation.Autowired;
|
||||
import org.springframework.data.domain.Page;
|
||||
import org.springframework.stereotype.Controller;
|
||||
import org.springframework.web.bind.annotation.*;
|
||||
|
||||
/**
|
||||
* 会员商品收藏管理Controller
|
||||
* Created by macro on 2018/8/2.
|
||||
*/
|
||||
@Controller
|
||||
@Api(tags = "MemberCollectionController")
|
||||
@Tag(name = "MemberCollectionController",description = "会员收藏管理")
|
||||
@RequestMapping("/member/productCollection")
|
||||
public class MemberProductCollectionController {
|
||||
@Autowired
|
||||
private MemberCollectionService memberCollectionService;
|
||||
|
||||
@ApiOperation("添加商品收藏")
|
||||
@RequestMapping(value = "/add", method = RequestMethod.POST)
|
||||
@ResponseBody
|
||||
public CommonResult add(@RequestBody MemberProductCollection productCollection) {
|
||||
int count = memberCollectionService.add(productCollection);
|
||||
if (count > 0) {
|
||||
return CommonResult.success(count);
|
||||
} else {
|
||||
return CommonResult.failed();
|
||||
}
|
||||
}
|
||||
|
||||
@ApiOperation("删除商品收藏")
|
||||
@RequestMapping(value = "/delete", method = RequestMethod.POST)
|
||||
@ResponseBody
|
||||
public CommonResult delete(Long productId) {
|
||||
int count = memberCollectionService.delete(productId);
|
||||
if (count > 0) {
|
||||
return CommonResult.success(count);
|
||||
} else {
|
||||
return CommonResult.failed();
|
||||
}
|
||||
}
|
||||
|
||||
@ApiOperation("显示当前用户商品收藏列表")
|
||||
@RequestMapping(value = "/list", method = RequestMethod.GET)
|
||||
@ResponseBody
|
||||
public CommonResult<CommonPage<MemberProductCollection>> list(@RequestParam(value = "pageNum", defaultValue = "1") Integer pageNum,
|
||||
@RequestParam(value = "pageSize", defaultValue = "5") Integer pageSize) {
|
||||
Page<MemberProductCollection> page = memberCollectionService.list(pageNum,pageSize);
|
||||
return CommonResult.success(CommonPage.restPage(page));
|
||||
}
|
||||
|
||||
@ApiOperation("显示商品收藏详情")
|
||||
@RequestMapping(value = "/detail", method = RequestMethod.GET)
|
||||
@ResponseBody
|
||||
public CommonResult<MemberProductCollection> detail(@RequestParam Long productId) {
|
||||
MemberProductCollection memberProductCollection = memberCollectionService.detail(productId);
|
||||
return CommonResult.success(memberProductCollection);
|
||||
}
|
||||
|
||||
@ApiOperation("清空当前用户商品收藏列表")
|
||||
@RequestMapping(value = "/clear", method = RequestMethod.POST)
|
||||
@ResponseBody
|
||||
public CommonResult clear() {
|
||||
memberCollectionService.clear();
|
||||
return CommonResult.success(null);
|
||||
}
|
||||
}
|
||||
Loading…
Reference in new issue