diff --git a/Myshipping.Application/Event/BookingSyncSubscriber.cs b/Myshipping.Application/Event/BookingSyncSubscriber.cs index 7ce380b8..a0d0cb82 100644 --- a/Myshipping.Application/Event/BookingSyncSubscriber.cs +++ b/Myshipping.Application/Event/BookingSyncSubscriber.cs @@ -523,8 +523,8 @@ namespace Myshipping.Application.Event await repoCutomerOrder.AsUpdateable(custOrder).UpdateColumns(x => new { x.BookingId }).ExecuteCommandAsync(); //订舱编号和客户端BSNO - ord.BSNO = item.GetStringValue("OrderId"); - ord.CUSTNO = item.GetStringValue("CustNO"); + ord.BSNO = item.GetStringValue("orderId"); + ord.CUSTNO = item.GetStringValue("custNO"); await repoOrder.AsUpdateable(ord).UpdateColumns(x => new { x.BSNO, x.CUSTNO }).ExecuteCommandAsync(); _logger.LogInformation($"生成了订舱台账数据 {ord.Id}");