| | |
| | | */ |
| | | @ApiOperation("获取热点检测指标统计") |
| | | @GetMapping("/getTopParameters") |
| | | public AjaxResult getTopParameters(@RequestParam("inspectType") Integer inspectType) { |
| | | return AjaxResult.success(qualityReportService.getTopParameters(inspectType)); |
| | | public AjaxResult getTopParameters(@RequestParam("modelType") Integer modelType) { |
| | | return AjaxResult.success(qualityReportService.getTopParameters(modelType)); |
| | | } |
| | | |
| | | /** |
| | | * 获取月度合格率环比统计数据 |
| | | */ |
| | | @ApiOperation("获取月度合格率环比统计数据") |
| | | @PostMapping("/getMonthlyPassRateWithComparison") |
| | | public AjaxResult getMonthlyPassRateWithComparison(@RequestParam("year") String year, |
| | | @RequestParam("month") Integer month) { |
| | | return AjaxResult.success(qualityReportService.getMonthlyPassRateWithComparison(year, month)); |
| | | } |
| | | |
| | | } |