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 {
|
|
|
@PostMapping(value = "/createOrder")
|
public AjaxResult createOrder() {
|
return null;
|
}
|
|
}
|