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;
|
|
|
|
|
}
|