lxw
2023-05-25 f3c27fb78447449a950ba73c5e72ceda64ad8a12
src/main/java/com/whyc/controller/BattMapInformationController.java
@@ -51,7 +51,7 @@
        return service.delete(battMapInformation);
    }
    @GetMapping("/searchAddressByStationId")
    @ApiOperation(value = "获取地址")
    @ApiOperation(value = "获取地址",notes = "查询站点的经纬度")
    public Response searchAddressByStationId(@RequestParam String stationId){
        return service.searchAddressByStationId(stationId);
    }
@@ -65,7 +65,7 @@
    @GetMapping("/findStationState")
    @ApiOperation(value = "统计核容/停电放电",notes = "统计核容/停电放电,设备告警,设备充电,在线浮充")
    public Response findStationState(){
        return new Response();
        return service.findStationState();
    }
}