From b148462ff15d3bd40de1041570387a450065a209 Mon Sep 17 00:00:00 2001 From: cjy Date: Tue, 13 Aug 2024 10:09:24 +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=A0so=E5=A4=87=E6=B3=A8=E3=80=81=E7=AD=BE=E5=8D=95?= =?UTF-8?q?=E8=A6=81=E6=B1=82?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../DS.WMS.Core/Op/Dtos/SeaExportReq.cs | 10 ++++++++++ .../DS.WMS.Core/Op/Dtos/SeaExportRes.cs | 10 ++++++++++ .../DS.WMS.Core/Op/Entity/SeaExport.cs | 16 ++++++++++++++-- 3 files changed, 34 insertions(+), 2 deletions(-) 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 815190d5..6793647e 100644 --- a/ds-wms-service/DS.WMS.Core/Op/Dtos/SeaExportReq.cs +++ b/ds-wms-service/DS.WMS.Core/Op/Dtos/SeaExportReq.cs @@ -1197,6 +1197,16 @@ public class SeaExportReq /// 船司航线 /// public string CarrierLane { get; set; } + + /// + /// SO备注 + /// + public string SORemark { get; set; } + + /// + /// 签单要求 + /// + public string IssueRemark { 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 f39c5881..354d273f 100644 --- a/ds-wms-service/DS.WMS.Core/Op/Dtos/SeaExportRes.cs +++ b/ds-wms-service/DS.WMS.Core/Op/Dtos/SeaExportRes.cs @@ -1384,4 +1384,14 @@ public class SeaExportRes /// 船司航线 /// public string CarrierLane { get; set; } + + /// + /// SO备注 + /// + public string SORemark { get; set; } + + /// + /// 签单要求 + /// + public string IssueRemark { 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 b7b4de5d..d4eaf4a7 100644 --- a/ds-wms-service/DS.WMS.Core/Op/Entity/SeaExport.cs +++ b/ds-wms-service/DS.WMS.Core/Op/Entity/SeaExport.cs @@ -864,9 +864,9 @@ public class SeaExport : BaseOrgModel public DateTime? CloseDocDate { get; set; } /// - /// 截单备注 + /// 截单备注(SI) /// - [SqlSugar.SugarColumn(ColumnDescription = "截单备注", IsNullable = true, ColumnDataType = StaticConfig.CodeFirst_BigString)] + [SqlSugar.SugarColumn(ColumnDescription = "截单备注(SI)", IsNullable = true, ColumnDataType = StaticConfig.CodeFirst_BigString)] public string CloseDocRemark { get; set; } /// /// 订舱备注 @@ -1569,4 +1569,16 @@ public class SeaExport : BaseOrgModel /// [SugarColumn(ColumnDescription = "船司航线", IsNullable = true, Length = 100)] public string CarrierLane { get; set; } + + /// + /// SO备注 + /// + [SqlSugar.SugarColumn(ColumnDescription = "SO备注", IsNullable = true, ColumnDataType = StaticConfig.CodeFirst_BigString)] + public string SORemark { get; set; } + + /// + /// 签单要求 + /// + [SugarColumn(ColumnDescription = "签单要求", IsNullable = true, Length = 200)] + public string IssueRemark { get; set; } } \ No newline at end of file