|
|
|
@ -54,8 +54,8 @@ public class EcologyController extends BladeController {
|
|
|
|
|
@PostMapping("/station_top") |
|
|
|
|
@ApiOperationSupport(order = 1) |
|
|
|
|
@ApiOperation(value = "站点数据及达标率排行", notes = "站点数据及达标率排行") |
|
|
|
|
public R station_top(@RequestParam Long deptId) { |
|
|
|
|
return R.data(stationService.station_top(deptId)); |
|
|
|
|
public R station_top() { |
|
|
|
|
return R.data(stationService.station_top()); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
/** |
|
|
|
@ -65,7 +65,7 @@ public class EcologyController extends BladeController {
|
|
|
|
|
@PostMapping("/trend_chart") |
|
|
|
|
@ApiOperationSupport(order = 1) |
|
|
|
|
@ApiOperation(value = "指标趋势图", notes = "指标趋势图") |
|
|
|
|
public R trend_chart(@RequestParam Long deptId,@RequestParam String type) { |
|
|
|
|
public R trend_chart(@RequestParam String type) { |
|
|
|
|
return R.data(stationService.trend_chart(type)); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|