package com.doumee.api.web;
|
|
import com.doumee.core.annotation.trace.Trace;
|
import com.doumee.service.business.GoodsorderService;
|
import io.swagger.annotations.Api;
|
import lombok.extern.slf4j.Slf4j;
|
import org.springframework.beans.factory.annotation.Autowired;
|
import org.springframework.web.bind.annotation.RequestMapping;
|
import org.springframework.web.bind.annotation.RestController;
|
|
/**
|
* Created by IntelliJ IDEA.
|
*
|
* @Author : Rk
|
* @create 2023/10/9 10:15
|
*/
|
|
@Api(tags = "3、订单业务")
|
@Trace(exclude = true)
|
@RestController
|
@RequestMapping("/web/goodsOrder")
|
@Slf4j
|
public class GoodsOrderApi extends ApiController{
|
|
@Autowired
|
private GoodsorderService goodsorderService;
|
|
|
|
|
|
|
|
|
|
|
}
|