| | |
| | | return Result.OK(result); |
| | | } |
| | | |
| | | // public Result<?> monthUtilizationTendency(String) |
| | | @ApiOperation(value = "大屏看板-周利用率趋势", notes = "大屏看板-周利用率趋势") |
| | | @GetMapping("/weekUtilizationTendency") |
| | | public Result<?> weekUtilizationTendency(String productionId) { |
| | | Map<String, Object> result = mdcLargeScreenService.weekUtilizationTendency(productionId); |
| | | return Result.OK(result); |
| | | } |
| | | |
| | | @ApiOperation(value = "大屏看板-日利用率趋势", notes = "大屏看板-日利用率趋势") |
| | | @GetMapping("/dayUtilizationTendency") |
| | | public Result<?> dayUtilizationTendency(String productionId) { |
| | | Map<String, Object> result = mdcLargeScreenService.dayUtilizationTendency(productionId); |
| | | return Result.OK(result); |
| | | } |
| | | |
| | | } |