From 13c2e6852ccd3ab971796f1e8b5d73752bbe54da Mon Sep 17 00:00:00 2001 From: cjy Date: Tue, 5 Nov 2024 18:01:45 +0800 Subject: [PATCH] =?UTF-8?q?=E6=B5=B7=E8=BF=90=E5=87=BA=E5=8F=A3Edi?= =?UTF-8?q?=E4=BF=A1=E6=81=AF=E6=B7=BB=E5=8A=A0SO=20=E5=92=8C=20SI=20?= =?UTF-8?q?=E5=A4=87=E6=B3=A8?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../DS.WMS.Core/Op/Dtos/SeaExportEdiReq.cs | 8 ++++++++ .../DS.WMS.Core/Op/Dtos/SeaExportEdiRes.cs | 10 +++++++++- ds-wms-service/DS.WMS.Core/Op/Entity/SeaExport.cs | 9 +-------- .../DS.WMS.Core/Op/Entity/SeaExportEdi.cs | 15 +++++++++++++++ 4 files changed, 33 insertions(+), 9 deletions(-) diff --git a/ds-wms-service/DS.WMS.Core/Op/Dtos/SeaExportEdiReq.cs b/ds-wms-service/DS.WMS.Core/Op/Dtos/SeaExportEdiReq.cs index 88765146..1927474a 100644 --- a/ds-wms-service/DS.WMS.Core/Op/Dtos/SeaExportEdiReq.cs +++ b/ds-wms-service/DS.WMS.Core/Op/Dtos/SeaExportEdiReq.cs @@ -193,7 +193,15 @@ namespace DS.WMS.Core.Op.Dtos /// CNPTNo /// public string CNPTNo { get; set; } + /// + /// SO备注 + /// + public string SORemark { get; set; } + /// + /// SI备注 + /// + public string SIRemark { get; set; } } } diff --git a/ds-wms-service/DS.WMS.Core/Op/Dtos/SeaExportEdiRes.cs b/ds-wms-service/DS.WMS.Core/Op/Dtos/SeaExportEdiRes.cs index dc0a5baa..a4c334c8 100644 --- a/ds-wms-service/DS.WMS.Core/Op/Dtos/SeaExportEdiRes.cs +++ b/ds-wms-service/DS.WMS.Core/Op/Dtos/SeaExportEdiRes.cs @@ -189,6 +189,14 @@ namespace DS.WMS.Core.Op.Dtos /// public string EmcNameAccount { get; set; } - + /// + /// SO备注 + /// + public string SORemark { get; set; } + + /// + /// SI备注 + /// + public string SIRemark { get; set; } } } 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 29b39cda..8e0cb7cc 100644 --- a/ds-wms-service/DS.WMS.Core/Op/Entity/SeaExport.cs +++ b/ds-wms-service/DS.WMS.Core/Op/Entity/SeaExport.cs @@ -1833,14 +1833,7 @@ public class SeaExport : BaseOrgModel [Description("船司航线")] [SugarColumn(ColumnDescription = "船司航线", IsNullable = true, Length = 100)] public string CarrierLane { get; set; } - - /// - /// SO备注 - /// - [Description("SO备注")] - [SqlSugar.SugarColumn(ColumnDescription = "SO备注", IsNullable = true, ColumnDataType = StaticConfig.CodeFirst_BigString)] - public string SORemark { get; set; } - + /// /// 签单要求 /// diff --git a/ds-wms-service/DS.WMS.Core/Op/Entity/SeaExportEdi.cs b/ds-wms-service/DS.WMS.Core/Op/Entity/SeaExportEdi.cs index aed669fb..19f90ec4 100644 --- a/ds-wms-service/DS.WMS.Core/Op/Entity/SeaExportEdi.cs +++ b/ds-wms-service/DS.WMS.Core/Op/Entity/SeaExportEdi.cs @@ -220,4 +220,19 @@ public class SeaExportEdi: BaseModel /// [SqlSugar.SugarColumn(ColumnDescription = "CNPTNo", IsNullable = true, Length = 50)] public string CNPTNo { get; set; } + + + /// + /// SO备注 + /// + [Description("SO备注")] + [SqlSugar.SugarColumn(ColumnDescription = "SO备注", IsNullable = true, ColumnDataType = StaticConfig.CodeFirst_BigString)] + public string SORemark { get; set; } + + /// + /// SI备注 + /// + [Description("SI备注")] + [SqlSugar.SugarColumn(ColumnDescription = "SI备注", IsNullable = true, ColumnDataType = StaticConfig.CodeFirst_BigString)] + public string SIRemark { get; set; } } \ No newline at end of file