diff --git a/ds-wms-service/DS.WMS.Core/Code/Dtos/CodePortReq.cs b/ds-wms-service/DS.WMS.Core/Code/Dtos/CodePortReq.cs
index 506e4b70..9f52c19d 100644
--- a/ds-wms-service/DS.WMS.Core/Code/Dtos/CodePortReq.cs
+++ b/ds-wms-service/DS.WMS.Core/Code/Dtos/CodePortReq.cs
@@ -1,5 +1,6 @@
using DS.Module.Core;
using FluentValidation;
+using SqlSugar;
namespace DS.WMS.Core.Code.Dtos;
@@ -47,6 +48,14 @@ public class CodePortReq
///
public long LaneId { get; set; }= 0;
///
+ /// 航线代码
+ ///
+ public string LaneCode { get; set; }
+ ///
+ /// 航线
+ ///
+ public string Lane { get; set; }
+ ///
/// EDI代码
///
public string EdiCode { get; set; } = "";
diff --git a/ds-wms-service/DS.WMS.Core/Code/Dtos/CodePortRes.cs b/ds-wms-service/DS.WMS.Core/Code/Dtos/CodePortRes.cs
index 13c11b04..81cdc636 100644
--- a/ds-wms-service/DS.WMS.Core/Code/Dtos/CodePortRes.cs
+++ b/ds-wms-service/DS.WMS.Core/Code/Dtos/CodePortRes.cs
@@ -1,4 +1,5 @@
using DS.Module.Core;
+using SqlSugar;
namespace DS.WMS.Core.Code.Dtos;
@@ -45,6 +46,14 @@ public class CodePortRes
///
public long LaneId { get; set; }= 0;
///
+ /// 航线代码
+ ///
+ public string LaneCode { get; set; }
+ ///
+ /// 航线
+ ///
+ public string Lane { get; set; }
+ ///
/// EDI代码
///
public string EdiCode { get; set; } = "";
diff --git a/ds-wms-service/DS.WMS.Core/Code/Dtos/CodePortSelectRes.cs b/ds-wms-service/DS.WMS.Core/Code/Dtos/CodePortSelectRes.cs
index 19ee2cac..cea433e9 100644
--- a/ds-wms-service/DS.WMS.Core/Code/Dtos/CodePortSelectRes.cs
+++ b/ds-wms-service/DS.WMS.Core/Code/Dtos/CodePortSelectRes.cs
@@ -26,6 +26,19 @@ public class CodePortSelectRes
///
public string EdiCode { get; set; }
+ ///
+ /// 航线Id
+ ///
+ public long LaneId { get; set; }
+ ///
+ /// 航线代码
+ ///
+ public string LaneCode { get; set; }
+ ///
+ /// 航线
+ ///
+ public string Lane { get; set; }
+
///
/// 助记码
///
diff --git a/ds-wms-service/DS.WMS.Core/Code/Entity/CodePort.cs b/ds-wms-service/DS.WMS.Core/Code/Entity/CodePort.cs
index 901d9eda..2d7aa250 100644
--- a/ds-wms-service/DS.WMS.Core/Code/Entity/CodePort.cs
+++ b/ds-wms-service/DS.WMS.Core/Code/Entity/CodePort.cs
@@ -49,6 +49,17 @@ public class CodePort: BaseModel
///
[SugarColumn(ColumnDescription = "航线Id",IsNullable = true)]
public long LaneId { get; set; }
+
+ ///
+ /// 航线代码
+ ///
+ [SugarColumn(ColumnDescription = "航线代码", IsNullable = true, Length = 100)]
+ public string LaneCode { get; set; }
+ ///
+ /// 航线
+ ///
+ [SugarColumn(ColumnDescription = "航线", IsNullable = true, Length = 100)]
+ public string Lane { get; set; }
///
/// EDI代码
///
diff --git a/ds-wms-service/DS.WMS.Core/Op/Dtos/SeaExportReq.cs b/ds-wms-service/DS.WMS.Core/Op/Dtos/SeaExportReq.cs
index 6837391d..16aca35d 100644
--- a/ds-wms-service/DS.WMS.Core/Op/Dtos/SeaExportReq.cs
+++ b/ds-wms-service/DS.WMS.Core/Op/Dtos/SeaExportReq.cs
@@ -1153,6 +1153,11 @@ public class SeaExportReq
/// 签单地点代码
///
public string IssuePlaceCode { get; set; }
+
+ ///
+ /// 航线代码
+ ///
+ public string LaneCode { get; set; }
}
///
diff --git a/ds-wms-service/DS.WMS.Core/Op/Dtos/SeaExportRes.cs b/ds-wms-service/DS.WMS.Core/Op/Dtos/SeaExportRes.cs
index d944fce1..094871be 100644
--- a/ds-wms-service/DS.WMS.Core/Op/Dtos/SeaExportRes.cs
+++ b/ds-wms-service/DS.WMS.Core/Op/Dtos/SeaExportRes.cs
@@ -1349,4 +1349,9 @@ public class SeaExportRes
/// 签单地点代码
///
public string IssuePlaceCode { get; set; }
+
+ ///
+ /// 航线代码
+ ///
+ public string LaneCode { get; set; }
}
\ No newline at end of file
diff --git a/ds-wms-service/DS.WMS.Core/Op/Entity/SeaExport.cs b/ds-wms-service/DS.WMS.Core/Op/Entity/SeaExport.cs
index 1c4fec81..b6f5b38c 100644
--- a/ds-wms-service/DS.WMS.Core/Op/Entity/SeaExport.cs
+++ b/ds-wms-service/DS.WMS.Core/Op/Entity/SeaExport.cs
@@ -570,6 +570,11 @@ public class SeaExport : BaseOrgModel
[SugarColumn(ColumnDescription = "航线Id", IsNullable = true, DefaultValue = "0")]
public long LaneId { get; set; }
+ ///
+ /// 航线代码
+ ///
+ [SugarColumn(ColumnDescription = "航线代码", IsNullable = true, Length = 100)]
+ public string LaneCode { get; set; }
///
/// 航线
///