| | |
| | | } |
| | | return R.ok(list); |
| | | } |
| | | /** |
| | | * 查询服务指标分析渠道商列表 |
| | | */ |
| | | @ApiOperation( value = "查询服务指标分析渠道商列表-大屏") |
| | | @PostMapping(value = "/largeList") |
| | | public R<List<AnalysisServiceIndexData>> largeList() { |
| | | List<AnalysisServiceIndexData> list = analysisServiceIndexDataService.list(); |
| | | List<AnalysisServiceIndexChildData> analysisServiceIndexChildDataList = analysisServiceIndexChildDataService.list(); |
| | | for (AnalysisServiceIndexData analysisServiceIndexData : list) { |
| | | List<AnalysisServiceIndexChildData> indexChildDataList = analysisServiceIndexChildDataList.stream().filter(e -> e.getServiceIndexId().equals(analysisServiceIndexData.getId())).collect(Collectors.toList()); |
| | | analysisServiceIndexData.setAnalysisServiceIndexChildDataList(indexChildDataList); |
| | | } |
| | | return R.ok(list); |
| | | } |
| | | |
| | | |
| | | /** |