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 3e3b4889..f17c508e 100644
--- a/ds-wms-service/DS.WMS.Core/Op/Dtos/SeaExportReq.cs
+++ b/ds-wms-service/DS.WMS.Core/Op/Dtos/SeaExportReq.cs
@@ -1,6 +1,7 @@
using DS.Module.Core;
using FluentValidation;
using SqlSugar;
+using System.ComponentModel;
namespace DS.WMS.Core.Op.Dtos;
@@ -1252,6 +1253,12 @@ public class SeaExportReq
/// 危险品电话
///
public string DangerTel { get; set; }
+
+ ///
+ /// 货好时间-(只要年月日)
+ ///
+ [Description("货好时间")]
+ public Nullable GoodsCompleteTime { 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 31774acf..2d6cda5a 100644
--- a/ds-wms-service/DS.WMS.Core/Op/Dtos/SeaExportRes.cs
+++ b/ds-wms-service/DS.WMS.Core/Op/Dtos/SeaExportRes.cs
@@ -1523,4 +1523,10 @@ public class SeaExportRes
/// 整票审核状态
///
public BillAuditStatus AuditStatus { get; set; }
+
+ ///
+ /// 货好时间-(只要年月日)
+ ///
+ [Description("货好时间")]
+ public Nullable GoodsCompleteTime { 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 800db3eb..c2ed87fe 100644
--- a/ds-wms-service/DS.WMS.Core/Op/Entity/SeaExport.cs
+++ b/ds-wms-service/DS.WMS.Core/Op/Entity/SeaExport.cs
@@ -1982,4 +1982,11 @@ public class SeaExport : BaseOrgModel
///
[SugarColumn(ColumnDescription = "订单进程 0.未审单 1.已审未出号 2.已出号未申报 3.已申报", IsNullable = true, Length = 20,DefaultValue ="0")]
public string OrderProgress { get; set; }
+
+ ///
+ /// 货好时间-(只要年月日)
+ ///
+ [Description("货好时间")]
+ [SugarColumn(ColumnDescription = "货好时间", IsNullable = true)]
+ public Nullable GoodsCompleteTime { get; set; }
}
\ No newline at end of file