yangys
2024-05-09 60e317f7782c718d28920060fd686d2092c99c1e
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
package com.qianwen.smartman.modules.andon.controller;
 
import io.swagger.annotations.Api;
import com.qianwen.core.boot.ctrl.BladeController;
import com.qianwen.smartman.modules.andon.service.IDeviceAndonTypeService;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RestController;
 
@Api(value = "机器类型安灯类型关联表管理", tags = {"机器类型安灯类型关联表管理"})
@RequestMapping({"blade-andon/device-andon-type"})
@RestController
public class DeviceAndonTypeController extends BladeController {
    private IDeviceAndonTypeService deviceAndonTypeService;
 
    public DeviceAndonTypeController(final IDeviceAndonTypeService deviceAndonTypeService) {
        this.deviceAndonTypeService = deviceAndonTypeService;
    }
}