| | |
| | | @ApiResponse(code = 200, message = "success", response = ShoppingCartGoodsVo.class) |
| | | }) |
| | | @PostMapping(value = "/findCartGoodsList") |
| | | public FebsResponse findCartGoodsList() { |
| | | return new FebsResponse().success().data(mallShoppingCartService.findCartGoodsList()); |
| | | public FebsResponse findCartGoodsList(@RequestParam(required = false, value = "type") Integer type) { |
| | | return new FebsResponse().success().data(mallShoppingCartService.findCartGoodsList(type)); |
| | | } |
| | | |
| | | @ApiOperation(value = "添加商品到购物车", notes = "添加商品到购物车") |