From e45f41b906879536bfd760184cfe60dc3161722a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E9=9B=A8=E6=9C=A8c?= <857448963@qq.com> Date: Thu, 31 Aug 2023 15:51:34 +0800 Subject: [PATCH] =?UTF-8?q?bug=E4=BF=AE=E6=94=B9?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../controller/majornetwork/AreaStatisticalController.java | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pqs-event/event-boot/src/main/java/com/njcn/event/controller/majornetwork/AreaStatisticalController.java b/pqs-event/event-boot/src/main/java/com/njcn/event/controller/majornetwork/AreaStatisticalController.java index a08282c62..cb609aa9f 100644 --- a/pqs-event/event-boot/src/main/java/com/njcn/event/controller/majornetwork/AreaStatisticalController.java +++ b/pqs-event/event-boot/src/main/java/com/njcn/event/controller/majornetwork/AreaStatisticalController.java @@ -36,9 +36,9 @@ import java.util.List; @Api(tags = "区域概览") @AllArgsConstructor public class AreaStatisticalController extends BaseController { - + private final AreaStatisticalService areaStatisticalService; - + @OperateInfo(info = LogEnum.BUSINESS_COMMON) @PostMapping("/getAreaCalculation") @ApiOperation("获取暂降区域电压等级月份统计") @@ -54,7 +54,7 @@ public class AreaStatisticalController extends BaseController { @ApiOperation("获取暂降区域节点图") @ApiImplicitParam(name = "deviceInfoParam", value = "暂降事件分析参数", required = true) public HttpResult> getCalculation(@RequestBody @Validated DeviceInfoParam.BusinessParam deviceInfoParam) { - String methodDescribe = getMethodDescribe("getAreaCalculation"); + String methodDescribe = getMethodDescribe("getCalculation"); List calculation = areaStatisticalService.getCalculation(deviceInfoParam); return HttpResultUtil.assembleCommonResponseResult(CommonResponseEnum.SUCCESS, calculation, methodDescribe); }