gongchunyi
5 天以前 88c83650ee2e7769768ac19eeaf3af23537bd861
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.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;
 
}