From c4aa721a61edb5ff4502d621897c266b98ef3d1c Mon Sep 17 00:00:00 2001
From: baizonghao <1719256278@qq.com>
Date: 星期五, 24 二月 2023 11:18:58 +0800
Subject: [PATCH] 按报警点位统计,按区域统计

---
 ycl-platform/src/main/java/com/ycl/remote/service/CityPlatformService.java |    8 ++++----
 1 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/ycl-platform/src/main/java/com/ycl/remote/service/CityPlatformService.java b/ycl-platform/src/main/java/com/ycl/remote/service/CityPlatformService.java
index d9d9409..0271955 100644
--- a/ycl-platform/src/main/java/com/ycl/remote/service/CityPlatformService.java
+++ b/ycl-platform/src/main/java/com/ycl/remote/service/CityPlatformService.java
@@ -1,7 +1,7 @@
 package com.ycl.remote.service;
 
 import com.ycl.remote.dto.*;
-//import org.springframework.cloud.openfeign.FeignClient;
+import org.springframework.cloud.openfeign.FeignClient;
 import org.springframework.web.bind.annotation.PostMapping;
 import org.springframework.web.bind.annotation.RequestParam;
 
@@ -12,7 +12,7 @@
  * @author: AI
  * @date: 2022-09-28 15:40
  **/
-//@FeignClient(url = "http://10.53.139.176:81/api", name = "cityApi")
+@FeignClient(url = "http://10.53.139.176:81/api", name = "cityApi")
 public interface CityPlatformService {
 
     /**
@@ -24,7 +24,7 @@
      * @date 2022-09-28 16:12
      */
     @PostMapping("/unauthorized/external/event/add")
-    ResultResponseDto<EventAddResponseDto> addEvent(EventAddParamDto paramDto);
+    String addEvent(EventAddParamDto paramDto);
 
     /**
      * 浜嬩欢璇︽儏
@@ -35,7 +35,7 @@
      * @date 2022-09-28 16:12
      */
     @PostMapping("/unauthorized/external/event/process")
-    ResultResponseDto<EventProcessResponseDto> getEventProcess(EventProcessParamDto paramDto);
+    String getEventProcess(EventProcessParamDto paramDto);
 
 
 }

--
Gitblit v1.8.0