This commit is contained in:
linfso 2025-08-15 14:30:45 +08:00
parent d73d0528f1
commit 10ad843de7
2 changed files with 16 additions and 0 deletions

View File

@ -97,6 +97,16 @@ public class Oms2cCommonController extends BaseController
@Autowired
private OmsBaseService omsBaseService;
/**
* 获取轨迹记录
* @param billCode
* @return
*/
@GetMapping("/getLbsRecordListByBillCode")
public AjaxResult getLbsRecordListByBillCode(String billCode)
{
return this.iRpcCommonSvc.getLbsRecordListByBillCode(billCode);
}
/**
* 获取电子面单单号

View File

@ -9,6 +9,8 @@ import org.springframework.web.bind.annotation.PostMapping;
import org.springframework.web.bind.annotation.RequestBody;
import org.springframework.web.bind.annotation.RequestParam;
import java.util.Date;
@FeignClient(name = "IRpcCommonSvc",url = "${service.provider.url}",configuration = {FeignErrorDecoder.class})
public interface IRpcCommonSvc {
@ -22,4 +24,8 @@ public interface IRpcCommonSvc {
@GetMapping(value = "/apiweb/common/parseAddress")
public AjaxResult parseAddress(@RequestParam("content") String content);
@GetMapping(value = "/apiweb/common/getLbsRecordListByBillCode")
public AjaxResult getLbsRecordListByBillCode(@RequestParam("billCode") String billCode);
}