This commit is contained in:
linfso 2024-07-12 18:30:43 +08:00
parent e6babcfe54
commit 955d5610c1

View File

@ -4,6 +4,7 @@ package com.xdadan.erp.oms.service.svc;
import com.xdadan.erp.oms.common.core.domain.AjaxResult; import com.xdadan.erp.oms.common.core.domain.AjaxResult;
import org.springframework.cloud.openfeign.FeignClient; import org.springframework.cloud.openfeign.FeignClient;
import org.springframework.web.bind.annotation.GetMapping; 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}",fallback = ProviderClientFallback.class)
@FeignClient(name = "${service.provider.name}",url = "${service.provider.url}") @FeignClient(name = "${service.provider.name}",url = "${service.provider.url}")
@ -13,6 +14,6 @@ public interface IApiwebSvc {
* 获取电子面单单号 * 获取电子面单单号
*/ */
@GetMapping(value = "/apiweb/common/realMatchWaybill") @GetMapping(value = "/apiweb/common/realMatchWaybill")
public AjaxResult realMatchWaybill(String useSiteCode,String prefix); public AjaxResult realMatchWaybill(@RequestParam("useSiteCode")String useSiteCode, @RequestParam("prefix")String prefix);
} }