| | |
| | | /** |
| | | * 查询服务指标分析渠道商列表 |
| | | */ |
| | | @ApiOperation( value = "通过渠道商id查询指标-兼容大屏接口",notes = "兼容大屏接口") |
| | | @ApiOperation( value = "通过渠道商id查询指标") |
| | | @GetMapping(value = "/getListByServiceId") |
| | | public R<List<AnalysisServiceIndexChildData>> getListByServiceId(@RequestParam("serviceIndexId") Integer serviceIndexId) { |
| | | List<AnalysisServiceIndexChildData> list = analysisServiceIndexChildDataService.list(Wrappers.lambdaQuery(AnalysisServiceIndexChildData.class) |
| | | .eq(AnalysisServiceIndexChildData::getServiceIndexId, serviceIndexId)); |
| | | return R.ok(list); |
| | | } |
| | | /** |
| | | * 查询服务指标分析渠道商列表 |
| | | */ |
| | | @ApiOperation( value = "通过渠道商id查询指标-兼容大屏接口",notes = "大屏接口") |
| | | @GetMapping(value = "/getLargeListByServiceId") |
| | | public R<List<AnalysisServiceIndexChildData>> getLargeListByServiceId(@RequestParam("serviceIndexId") Integer serviceIndexId) { |
| | | List<AnalysisServiceIndexChildData> list = analysisServiceIndexChildDataService.list(Wrappers.lambdaQuery(AnalysisServiceIndexChildData.class) |
| | | .eq(AnalysisServiceIndexChildData::getServiceIndexId, serviceIndexId)); |
| | | return R.ok(list); |
| | | } |
| | | |
| | | } |
| | | |