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; /** *
* 销售生产需求-明细控制层 *
* * @author deslrey * @version 1.0 * @since 2026/03/09 17:17 */ @RestController @RequestMapping("/ProdDemandDetail") public class ProdDemandDetailController { @Autowired private ProdDemandDetailService prodDemandDetailService; }