From 4a294f7a7fad1893491aebcb3d85a76b21ad9547 Mon Sep 17 00:00:00 2001 From: cjy Date: Mon, 21 Oct 2024 16:54:01 +0800 Subject: [PATCH] =?UTF-8?q?=E6=B5=B7=E8=BF=90=E5=87=BA=E5=8F=A3=E6=B7=BB?= =?UTF-8?q?=E5=8A=A0=E8=B4=A7=E5=A5=BD=E6=97=B6=E9=97=B4?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- ds-wms-service/DS.WMS.Core/Op/Dtos/SeaExportReq.cs | 7 +++++++ ds-wms-service/DS.WMS.Core/Op/Dtos/SeaExportRes.cs | 6 ++++++ ds-wms-service/DS.WMS.Core/Op/Entity/SeaExport.cs | 7 +++++++ 3 files changed, 20 insertions(+) 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