From 955d5610c13cc93aef104a10e64e351261970362 Mon Sep 17 00:00:00 2001 From: linfso Date: Fri, 12 Jul 2024 18:30:43 +0800 Subject: [PATCH] md --- .../main/java/com/xdadan/erp/oms/service/svc/IApiwebSvc.java | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/emis-oms-biz/src/main/java/com/xdadan/erp/oms/service/svc/IApiwebSvc.java b/emis-oms-biz/src/main/java/com/xdadan/erp/oms/service/svc/IApiwebSvc.java index e68c79e..0195ef8 100644 --- a/emis-oms-biz/src/main/java/com/xdadan/erp/oms/service/svc/IApiwebSvc.java +++ b/emis-oms-biz/src/main/java/com/xdadan/erp/oms/service/svc/IApiwebSvc.java @@ -4,6 +4,7 @@ package com.xdadan.erp.oms.service.svc; import com.xdadan.erp.oms.common.core.domain.AjaxResult; import org.springframework.cloud.openfeign.FeignClient; import org.springframework.web.bind.annotation.GetMapping; +import org.springframework.web.bind.annotation.RequestParam; //@FeignClient(name = "${service.provider.name}",url = "${service.provider.url}",fallback = ProviderClientFallback.class) @FeignClient(name = "${service.provider.name}",url = "${service.provider.url}") @@ -13,6 +14,6 @@ public interface IApiwebSvc { * 获取电子面单单号 */ @GetMapping(value = "/apiweb/common/realMatchWaybill") - public AjaxResult realMatchWaybill(String useSiteCode,String prefix); + public AjaxResult realMatchWaybill(@RequestParam("useSiteCode")String useSiteCode, @RequestParam("prefix")String prefix); } \ No newline at end of file