From 8495256d88d72489f44fae01b5801bdd249e569d Mon Sep 17 00:00:00 2001 From: Jackwang Date: Thu, 14 Oct 2021 16:18:25 +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 --- .../java/com/elink/esua/epdc/feign/CustomFeignClient.java | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/epdc-cloud-api/src/main/java/com/elink/esua/epdc/feign/CustomFeignClient.java b/epdc-cloud-api/src/main/java/com/elink/esua/epdc/feign/CustomFeignClient.java index e31713e..b881ac9 100644 --- a/epdc-cloud-api/src/main/java/com/elink/esua/epdc/feign/CustomFeignClient.java +++ b/epdc-cloud-api/src/main/java/com/elink/esua/epdc/feign/CustomFeignClient.java @@ -206,7 +206,7 @@ public interface CustomFeignClient { * @params [userDetail, formDto] * @return com.elink.esua.epdc.commons.tools.utils.Result */ - @PostMapping(value = "custom/tripreport/saveTripInfo", consumes = MediaType.APPLICATION_JSON_VALUE) + @GetMapping(value = "custom/tripreport/getTripInfoList", consumes = MediaType.APPLICATION_JSON_VALUE) Result getTripInfoList(GetTripInfoFormDTO formDto); /** @@ -216,7 +216,7 @@ public interface CustomFeignClient { * @params [userDetail, formDto] * @return com.elink.esua.epdc.commons.tools.utils.Result */ - @PostMapping(value = "custom/tripreport/saveTripInfo", consumes = MediaType.APPLICATION_JSON_VALUE) + @GetMapping(value = "custom/tripreport/getTripInfoDetail", consumes = MediaType.APPLICATION_JSON_VALUE) Result getTripInfoDetail(GetTripInfoFormDTO formDto); /** @@ -226,6 +226,6 @@ public interface CustomFeignClient { * @params [formDto] * @return com.elink.esua.epdc.commons.tools.utils.Result */ - @DeleteMapping(value = "custom/tripreport/saveTripInfo", consumes = MediaType.APPLICATION_JSON_VALUE) + @DeleteMapping(value = "custom/tripreport/deleteTripById", consumes = MediaType.APPLICATION_JSON_VALUE) Result deleteTripById(GetTripInfoFormDTO formDto); }