This commit is contained in:
linfso 2024-12-01 19:57:35 +08:00
parent 8a2b091313
commit d3bad9b7c8
2 changed files with 2 additions and 2 deletions

View File

@ -149,7 +149,7 @@ public class Oms2cWaybillController extends BaseController
@PostMapping(value = "/calcProductFee")
public AjaxResult calcProductFee(@RequestBody WaybillOrder waybillOrder)
{
return this.iRpcWaybillSvc.calcProductFee(waybillOrder);
return this.iRpcWaybillSvc.calcProductFeeByOms(waybillOrder);
}

View File

@ -32,7 +32,7 @@ public interface IRpcWaybillSvc {
* @return
*/
@PostMapping(value = "/apiweb/emisWaybill/calcProductFeeByOms")
public AjaxResult calcProductFee(@RequestBody WaybillOrder waybillOrder);
public AjaxResult calcProductFeeByOms(@RequestBody WaybillOrder waybillOrder);