tj
2025-04-01 16c60b7e3b834b05599882ab1ffe99ec78664762
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
package com.mzl.flower.web.v2;
 
 
import com.mzl.flower.base.BaseController;
import com.mzl.flower.service.productOrders.ProductOrdersService;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RestController;
 
/**
* @author generator@TaoJie
* @since 2025-03-31
*/
@RestController
@RequestMapping("/v1/product-orders")
public class ProductOrdersController extends BaseController {
 
    @Autowired
    private ProductOrdersService productOrdersService;
 
 
 
 
}