| | |
| | | import cc.mrbird.febs.common.entity.FebsResponse; |
| | | import cc.mrbird.febs.mall.dto.AddCartDto; |
| | | import cc.mrbird.febs.mall.service.IApiMallShoppingCartService; |
| | | import cc.mrbird.febs.mall.vo.ShoppingCartGoodsVo; |
| | | import io.swagger.annotations.Api; |
| | | import io.swagger.annotations.ApiOperation; |
| | | import io.swagger.annotations.ApiResponse; |
| | | import io.swagger.annotations.ApiResponses; |
| | | import lombok.RequiredArgsConstructor; |
| | | import lombok.extern.slf4j.Slf4j; |
| | | import org.springframework.validation.annotation.Validated; |
| | | import org.springframework.web.bind.annotation.PostMapping; |
| | | import org.springframework.web.bind.annotation.RequestBody; |
| | | import org.springframework.web.bind.annotation.RequestMapping; |
| | | import org.springframework.web.bind.annotation.RestController; |
| | | import org.springframework.web.bind.annotation.*; |
| | | |
| | | /** |
| | | * @author wzy |
| | |
| | | private final IApiMallShoppingCartService mallShoppingCartService; |
| | | |
| | | @ApiOperation(value = "获取购物车商品列表", notes = "获取购物车商品列表") |
| | | @ApiResponses({ |
| | | @ApiResponse(code = 200, message = "success", response = ShoppingCartGoodsVo.class) |
| | | }) |
| | | @PostMapping(value = "/findCartGoodsList") |
| | | public FebsResponse findCartGoodsList() { |
| | | return new FebsResponse().success().data(mallShoppingCartService.findCartGoodsList()); |
| | |
| | | } |
| | | |
| | | @ApiOperation(value = "从购物车中删除商品", notes = "从购物车中删除商品") |
| | | @PostMapping(value = "/delGoods") |
| | | public FebsResponse delGoods() { |
| | | return null; |
| | | @PostMapping(value = "/delGoods/{id}") |
| | | public FebsResponse delGoods(@PathVariable("id") Long id) { |
| | | mallShoppingCartService.removeById(id); |
| | | return new FebsResponse().success().data("删除成功"); |
| | | } |
| | | } |