From 35fdd42849a29891f02692c38ee0c5b42903ff68 Mon Sep 17 00:00:00 2001 From: cjy Date: Wed, 9 Oct 2024 10:05:30 +0800 Subject: [PATCH] =?UTF-8?q?=E6=B5=B7=E8=BF=90=E5=87=BA=E5=8F=A3=E6=8F=90?= =?UTF-8?q?=E5=8D=95=E4=BF=A1=E6=81=AF=E6=B7=BB=E5=8A=A0AgentName=E5=AD=97?= =?UTF-8?q?=E6=AE=B5?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../DS.WMS.Core/Op/Dtos/SeaExportBillManageReq.cs | 5 +++++ .../DS.WMS.Core/Op/Dtos/SeaExportBillManageRes.cs | 4 ++++ ds-wms-service/DS.WMS.Core/Op/Entity/SeaExportBillManage.cs | 6 ++++++ 3 files changed, 15 insertions(+) diff --git a/ds-wms-service/DS.WMS.Core/Op/Dtos/SeaExportBillManageReq.cs b/ds-wms-service/DS.WMS.Core/Op/Dtos/SeaExportBillManageReq.cs index 33bd0519..3225a4f2 100644 --- a/ds-wms-service/DS.WMS.Core/Op/Dtos/SeaExportBillManageReq.cs +++ b/ds-wms-service/DS.WMS.Core/Op/Dtos/SeaExportBillManageReq.cs @@ -127,6 +127,11 @@ namespace DS.WMS.Core.Op.Dtos /// 代理人 t_info_client CUSTNAME /// public long? AgentId { get; set; } + + /// + /// 代理人名称 + /// + public string AgentName { get; set; } /// /// 代理人内容 /// diff --git a/ds-wms-service/DS.WMS.Core/Op/Dtos/SeaExportBillManageRes.cs b/ds-wms-service/DS.WMS.Core/Op/Dtos/SeaExportBillManageRes.cs index 7616f8fc..02211230 100644 --- a/ds-wms-service/DS.WMS.Core/Op/Dtos/SeaExportBillManageRes.cs +++ b/ds-wms-service/DS.WMS.Core/Op/Dtos/SeaExportBillManageRes.cs @@ -126,6 +126,10 @@ namespace DS.WMS.Core.Op.Dtos /// public long? AgentId { get; set; } /// + /// 代理人名称 + /// + public string AgentName { get; set; } + /// /// 代理人内容 /// public string AgentContent { get; set; } diff --git a/ds-wms-service/DS.WMS.Core/Op/Entity/SeaExportBillManage.cs b/ds-wms-service/DS.WMS.Core/Op/Entity/SeaExportBillManage.cs index b01b3ca4..b74bb901 100644 --- a/ds-wms-service/DS.WMS.Core/Op/Entity/SeaExportBillManage.cs +++ b/ds-wms-service/DS.WMS.Core/Op/Entity/SeaExportBillManage.cs @@ -141,6 +141,12 @@ public class SeaExportBillManage : BaseOrgModel /// [SqlSugar.SugarColumn(ColumnDescription = "代理人", IsNullable = true)] public long? AgentId { get; set; } + + /// + /// 代理人名称 + /// + [SqlSugar.SugarColumn(ColumnDescription = "代理人名称", IsNullable = true, Length = 100)] + public string AgentName { get; set; } /// /// 代理人内容 ///