|
|
@ -50,16 +50,12 @@ public class SideHustleController extends BladeController { |
|
|
|
@ApiOperation("集团/区域发电占比") |
|
|
|
@ApiOperation("集团/区域发电占比") |
|
|
|
@GetMapping("/areaPowerScale") |
|
|
|
@GetMapping("/areaPowerScale") |
|
|
|
@ApiOperationSupport(order = 3) |
|
|
|
@ApiOperationSupport(order = 3) |
|
|
|
@OperationAnnotation(moduleName = "演示大屏",title = "演示大屏", operatorType = OperatorType.MOBILE, |
|
|
|
|
|
|
|
businessType = BusinessType.GENCODE,action = "区域发电占比") |
|
|
|
|
|
|
|
public R<List<AreaPowerScaleVo>> areaPowerScale(@ApiParam(value = "区域机构ID") Long deptId) { |
|
|
|
public R<List<AreaPowerScaleVo>> areaPowerScale(@ApiParam(value = "区域机构ID") Long deptId) { |
|
|
|
return R.data(regionService.areaPowerScale(deptId)); |
|
|
|
return R.data(regionService.areaPowerScale(deptId)); |
|
|
|
} |
|
|
|
} |
|
|
|
@ApiLog |
|
|
|
@ApiLog |
|
|
|
@ApiOperation("集团/区域占比") |
|
|
|
@ApiOperation("集团/区域占比") |
|
|
|
@GetMapping("/areaScale") |
|
|
|
@GetMapping("/areaScale") |
|
|
|
@OperationAnnotation(moduleName = "演示大屏",title = "演示大屏", operatorType = OperatorType.MOBILE, |
|
|
|
|
|
|
|
businessType = BusinessType.GENCODE,action = "区域占比") |
|
|
|
|
|
|
|
@ApiOperationSupport(order = 4) |
|
|
|
@ApiOperationSupport(order = 4) |
|
|
|
public R<List<OldAreaScaleVo>> areaScale(@ApiParam(value = "区域机构ID") Long deptId) { |
|
|
|
public R<List<OldAreaScaleVo>> areaScale(@ApiParam(value = "区域机构ID") Long deptId) { |
|
|
|
return R.data(regionService.areaScale(deptId)); |
|
|
|
return R.data(regionService.areaScale(deptId)); |
|
|
@ -77,8 +73,6 @@ public class SideHustleController extends BladeController { |
|
|
|
@ApiOperation("获取地图标记") |
|
|
|
@ApiOperation("获取地图标记") |
|
|
|
@GetMapping("/getMapMarker") |
|
|
|
@GetMapping("/getMapMarker") |
|
|
|
@ApiOperationSupport(order = 6) |
|
|
|
@ApiOperationSupport(order = 6) |
|
|
|
@OperationAnnotation(moduleName = "演示大屏",title = "演示大屏", operatorType = OperatorType.MOBILE, |
|
|
|
|
|
|
|
businessType = BusinessType.GENCODE,action = "获取地图标记") |
|
|
|
|
|
|
|
public R<List<MapMarkerVo>> getMapMarker(@ApiParam(value = "区域机构ID") Long deptId,@RequestParam(value ="types") List<Integer> types) { |
|
|
|
public R<List<MapMarkerVo>> getMapMarker(@ApiParam(value = "区域机构ID") Long deptId,@RequestParam(value ="types") List<Integer> types) { |
|
|
|
return R.data(regionService.getMapMarker(deptId,types)); |
|
|
|
return R.data(regionService.getMapMarker(deptId,types)); |
|
|
|
} |
|
|
|
} |
|
|
|