yangys
2024-04-02 6bed83e92f67954cd2135071133329f2205efe4f
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
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
/* loaded from: blade-api.jar:BOOT-INF/classes/org/springblade/modules/andon/controller/DeviceAndonTypeController.class */
public class DeviceAndonTypeController extends BladeController {
    private IDeviceAndonTypeService deviceAndonTypeService;
 
    public DeviceAndonTypeController(final IDeviceAndonTypeService deviceAndonTypeService) {
        this.deviceAndonTypeService = deviceAndonTypeService;
    }
}