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; /** *
* 销售生产需求-主表控制层 *
* * @author deslrey * @version 1.0 * @since 2026/03/09 17:17 */ @RestController @RequestMapping("/ProdDemandMain") public class ProdDemandMainController { @Autowired private ProdDemandMainService prodDemandMainService; }