diff --git a/ds-wms-service/DS.Module.DjyRulesEngine/RulesEngineOrderBookingMainBusinessInfo.cs b/ds-wms-service/DS.Module.DjyRulesEngine/RulesEngineOrderBookingMainBusinessInfo.cs
index e27a549b..78736c1b 100644
--- a/ds-wms-service/DS.Module.DjyRulesEngine/RulesEngineOrderBookingMainBusinessInfo.cs
+++ b/ds-wms-service/DS.Module.DjyRulesEngine/RulesEngineOrderBookingMainBusinessInfo.cs
@@ -1,10 +1,4 @@
-using System;
-using System.Collections.Generic;
-using System.Linq;
-using System.Text;
-using System.Threading.Tasks;
-
-namespace DS.Module.DjyRulesEngine
+namespace DS.Module.DjyRulesEngine
{
///
///
@@ -31,7 +25,10 @@ namespace DS.Module.DjyRulesEngine
/// 客户合同号
///
public string ServContrNo { get; set; }
-
+ ///
+ /// 运费协议号(约号)
+ ///
+ public string ContractNo { get; set; }
///
/// 发货人代码
///
diff --git a/ds-wms-service/DS.WMS.Core/Op/Method/SeaExportService.cs b/ds-wms-service/DS.WMS.Core/Op/Method/SeaExportService.cs
index 54959775..ea8f6afb 100644
--- a/ds-wms-service/DS.WMS.Core/Op/Method/SeaExportService.cs
+++ b/ds-wms-service/DS.WMS.Core/Op/Method/SeaExportService.cs
@@ -207,6 +207,7 @@ public partial class SeaExportService : ISeaExportService
//映射规则引擎
TypeAdapterConfig
.NewConfig()
+ .Map(dto => dto.ContrNo, poco => poco.ContractNo)
.Map(dto => dto.MasterBlNo, poco => poco.MBLNO)
.Map(dto => dto.HouseBlNo, poco => poco.HBLNO)
.Map(dto => dto.BookingNo, poco => poco.BookingNo)