package com.ruoyi.prodDemand.controller;
|
|
import com.ruoyi.prodDemand.service.ProdDemandMainService;
|
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("/ProdDemandMain")
|
public class ProdDemandMainController {
|
|
@Autowired
|
private ProdDemandMainService prodDemandMainService;
|
|
}
|