luodangjia
2024-11-25 559ee10df3622e4802ca5664b83b713cd3a75f97
1
2
3
4
5
6
7
8
9
10
11
package com.ruoyi.other.controller;
 
import io.swagger.annotations.Api;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RestController;
 
@RestController
@RequestMapping("/shopping-cart")
@Api(tags = "购物车")
public class ShoppingCartController {
}