| | |
| | | package com.ruoyi.goods.controller.concole; |
| | | |
| | | import com.ruoyi.common.core.domain.R; |
| | | import com.ruoyi.goods.service.goods.ShoppingCartService; |
| | | import com.ruoyi.system.api.domain.dto.AppShoppingCartDelDto; |
| | | import org.springframework.beans.factory.annotation.Autowired; |
| | | 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 com.ruoyi.goods.service.goods.ShoppingCartService; |
| | | |
| | | import javax.annotation.Resource; |
| | | |
| | | /** |
| | | * @author jqs34 |
| | | * @ClassName ShoppingCartController |
| | |
| | | @RequestMapping("/shoppingCart") |
| | | public class ShoppingCartController { |
| | | |
| | | @Autowired |
| | | @Resource |
| | | private ShoppingCartService shoppingCartService; |
| | | |
| | | @PostMapping("/deleteShoppingCart") |