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;
|
|
}
|