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