Helius
2020-12-23 33a6562f5f72e02ba781beca60becaf9ee8077b2
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
package com.matrix.system.app.action;
 
import com.matrix.core.pojo.AjaxResult;
import io.swagger.annotations.Api;
import org.springframework.web.bind.annotation.PostMapping;
import org.springframework.web.bind.annotation.RequestMapping;
 
/**
 * @author wzy
 * @date 2020-12-21
 **/
@Api(value = "ApiOrderAction", tags = "订单接口类")
@RequestMapping(value = "/api/order")
public class ApiOrderAction {
 
 
    public AjaxResult findShoppingGoodsType() {
        return null;
    }
 
    public AjaxResult findShoppingGoods() {
        return null;
    }
 
    @PostMapping(value = "/createOrder")
    public AjaxResult createOrder() {
        return null;
    }
 
}