zss
2023-08-17 4c521b8f1fcc538f59cc0001dcf6649b0dee4880
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.yuanchu.mom.controller;
 
 
import io.swagger.annotations.Api;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.web.bind.annotation.*;
import com.yuanchu.mom.service.ManualTechnologyService;
 
 
/**
 * 编制工序表(ManualTechnology)表控制层
 *
 * @author zss
 * @since 2023-08-17 14:16:46
 */
@Api(tags = "编制工序表接口")
@RestController
@RequestMapping("/manualTechnology")
public class ManualTechnologyController {
 
    @Autowired
    private ManualTechnologyService manualTechnologyService;
 
}