Helius
2020-12-23 a27143ea3ab9f215fcbddfd23eba530afbbc3c62
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
package com.matrix.system.app.action;
 
import com.matrix.core.pojo.AjaxResult;
import io.swagger.annotations.Api;
import org.springframework.web.bind.annotation.RequestBody;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RestController;
 
/**
 * @author wzy
 * @date 2020-12-23
 **/
@Api(value = "ApiShoppingCarAction", tags = "订单-购物车接口类")
@RestController
@RequestMapping(value = "/api/shoppingCar")
public class ApiShoppingCarAction {
 
    public AjaxResult addItemToCar() {
        return null;
    };
 
}