| | |
| | | import org.jeecg.modules.screen.dto.AlarmInfoDto; |
| | | import org.jeecg.modules.screen.dto.EquipmentStatusOverview; |
| | | import org.jeecg.modules.screen.service.MdcLargeScreenService; |
| | | import org.jeecg.modules.system.entity.MdcProduction; |
| | | import org.springframework.web.bind.annotation.GetMapping; |
| | | import org.springframework.web.bind.annotation.RequestMapping; |
| | | import org.springframework.web.bind.annotation.RestController; |
| | |
| | | return Result.OK(result); |
| | | } |
| | | |
| | | @ApiOperation(value = "大屏看板-工段列表", notes = "大屏看板-工段列表") |
| | | @GetMapping("/productionList") |
| | | public Result<List<MdcProduction>> productionList(String productionId) { |
| | | List<MdcProduction> result = mdcLargeScreenService.productionList(productionId); |
| | | return Result.OK(result); |
| | | } |
| | | |
| | | } |