This commit is contained in:
linfso 2024-07-15 11:57:05 +08:00
parent c0362996a8
commit 05c8e5df05

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.domain.vo.WaybillOrder;
import org.springframework.cloud.openfeign.FeignClient;
import org.springframework.web.bind.annotation.GetMapping;
import org.springframework.web.bind.annotation.PostMapping;
import org.springframework.web.bind.annotation.RequestBody;
import org.springframework.web.bind.annotation.RequestParam;
@ -17,7 +18,7 @@ public interface IRpcDestinationSvc {
* @param
* @return
*/
@PostMapping(value = "/apiweb/emisDestination/getDestSite")
@GetMapping(value = "/apiweb/emisDestination/getDestSite")
public AjaxResult getDestSite(@RequestParam("country")String country,
@RequestParam("lineCode")String lineCode,
@RequestParam("province")String province,
@ -32,7 +33,7 @@ public interface IRpcDestinationSvc {
* @param
* @return
*/
@PostMapping(value = "/apiweb/emisDestination/getSendSite")
@GetMapping(value = "/apiweb/emisDestination/getSendSite")
public AjaxResult getSendSite(@RequestParam("country")String country,
@RequestParam("lineCode")String lineCode,
@RequestParam("province")String province,