diff --git a/Myshipping.Application/Service/BookingOrder/BookingOrderService.cs b/Myshipping.Application/Service/BookingOrder/BookingOrderService.cs index c65530cb..0cd8d1a5 100644 --- a/Myshipping.Application/Service/BookingOrder/BookingOrderService.cs +++ b/Myshipping.Application/Service/BookingOrder/BookingOrderService.cs @@ -3831,7 +3831,7 @@ namespace Myshipping.Application { BookingOrder order = new BookingOrder(); BookingCtn ctn = new BookingCtn(); - BookingEDIExt ext = new BookingEDIExt(); + BookingEDIExt edi = new BookingEDIExt(); Dictionary dic = new Dictionary(); foreach (PropertyDescriptor descriptor in TypeDescriptor.GetProperties(order)) { @@ -3842,7 +3842,7 @@ namespace Myshipping.Application } if (!string.IsNullOrWhiteSpace(descriptor.Description)) { - dic.Add(descriptor.Name, descriptor.Description); + dic.Add("order."+descriptor.Name, descriptor.Description); } } @@ -3858,14 +3858,14 @@ namespace Myshipping.Application } if (!string.IsNullOrWhiteSpace(descriptor.Description)) { - dic1.Add(descriptor.Name, descriptor.Description); + dic1.Add("ctn." + descriptor.Name, descriptor.Description); } } Dictionary dic2 = new Dictionary(); - foreach (PropertyDescriptor descriptor in TypeDescriptor.GetProperties(ext)) + foreach (PropertyDescriptor descriptor in TypeDescriptor.GetProperties(edi)) { string name = descriptor.Name; if (name == "TenantId" || name == "CreatedTime" || name == "UpdatedTime" || name == "CreatedUserId" || name == "CreatedUserName") @@ -3874,7 +3874,7 @@ namespace Myshipping.Application } if (!string.IsNullOrWhiteSpace(descriptor.Description)) { - dic2.Add(descriptor.Name, descriptor.Description); + dic2.Add("edi." + descriptor.Name, descriptor.Description); } } diff --git a/Myshipping.Core/Myshipping.Core.xml b/Myshipping.Core/Myshipping.Core.xml index 253d635a..49f0dc63 100644 --- a/Myshipping.Core/Myshipping.Core.xml +++ b/Myshipping.Core/Myshipping.Core.xml @@ -542,6 +542,21 @@ 大简云userid + + + 电话 + + + + + 手机 + + + + + 邮箱 + + 用户缓存 @@ -5657,6 +5672,21 @@ 大简云userid + + + 电话 + + + + + 手机 + + + + + 邮箱 + + AccessToken参数