| | |
| | | import io.swagger.annotations.ApiOperation; |
| | | import lombok.extern.slf4j.Slf4j; |
| | | import org.jeecg.common.api.vo.Result; |
| | | import org.jeecg.modules.mdc.entity.EquipmentAlarm; |
| | | import org.jeecg.modules.mdc.entity.MdcEquipmentMonitor; |
| | | import org.jeecg.modules.mdcJc.entity.MdcProductDayschedule; |
| | | import org.jeecg.modules.screen.dto.MdcProductDayscheduleDto; |
| | | import org.jeecg.modules.screen.dto.ToolLifeDto; |
| | | import org.jeecg.modules.screen.service.MdcSubLargeScreenService; |
| | | import org.springframework.web.bind.annotation.GetMapping; |
| | | import org.springframework.web.bind.annotation.RequestMapping; |
| | |
| | | return Result.ok(result); |
| | | } |
| | | |
| | | // @ApiOperation(value = "分控看板-设备实时状态", notes = "分控看板-设备实时状态") |
| | | // @GetMapping("/equipmentStatus") |
| | | // public Result<?> equipmentStatus(String productionId) { |
| | | // List<MdcEquipmentMonitor> result = mdcSubLargeScreenService.equipmentStatus(productionId); |
| | | // return Result.ok(result); |
| | | // } |
| | | @ApiOperation(value = "分控看板-设备报警", notes = "分控看板-设备报警") |
| | | @GetMapping("/equipmentAlarm") |
| | | public Result<?> equipmentAlarm(String productionId) { |
| | | List<EquipmentAlarm> result = mdcSubLargeScreenService.equipmentAlarm(productionId); |
| | | return Result.ok(result); |
| | | } |
| | | |
| | | @ApiOperation(value = "分控看板-刀具寿命列表", notes = "分控看板-刀具寿命列表") |
| | | @GetMapping("/toolLifeList") |
| | | public Result<?> toolLifeList(String productionId) { |
| | | List<ToolLifeDto> result = mdcSubLargeScreenService.toolLifeList(productionId); |
| | | return Result.ok(result); |
| | | } |
| | | |
| | | |
| | | } |