package com.ruoyi.prodDemand.controller;
|
|
import com.ruoyi.prodDemand.service.ProdDemandDetailService;
|
import org.springframework.beans.factory.annotation.Autowired;
|
import org.springframework.web.bind.annotation.RequestMapping;
|
import org.springframework.web.bind.annotation.RestController;
|
|
/**
|
* <br>
|
* 销售生产需求-明细控制层
|
* </br>
|
*
|
* @author deslrey
|
* @version 1.0
|
* @since 2026/03/09 17:17
|
*/
|
@RestController
|
@RequestMapping("/ProdDemandDetail")
|
public class ProdDemandDetailController {
|
|
@Autowired
|
private ProdDemandDetailService prodDemandDetailService;
|
|
}
|