jiangping
2023-10-09 70f25657a7f1c5b1bfb1189759b9fa6f33b6922e
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
31
32
33
34
35
36
37
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;
 
 
 
 
 
 
 
 
 
 
}