gongchunyi
5 天以前 f34a0ddd5ddb24035e846be9f1f2dde7545e2fcc
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
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;
 
}