From 2fee7b9b90c1acf7a17aef84ee22c2a31b801fe2 Mon Sep 17 00:00:00 2001 From: username@email.com <yzy2002yzy@163.com> Date: 星期五, 07 三月 2025 08:34:42 +0800 Subject: [PATCH] 送货管理 增加查询 业务经理 客户名称 完成 查询送货安排的历史 完成 --- CY_ECommercePlatform/CY.Model/OA/OA_DeliverPlan.cs | 50 +++++++++++++++++++++++++++++++++++++++++++++++++- 1 files changed, 49 insertions(+), 1 deletions(-) diff --git a/CY_ECommercePlatform/CY.Model/OA/OA_DeliverPlan.cs b/CY_ECommercePlatform/CY.Model/OA/OA_DeliverPlan.cs index c13d29f..f8e0a1a 100644 --- a/CY_ECommercePlatform/CY.Model/OA/OA_DeliverPlan.cs +++ b/CY_ECommercePlatform/CY.Model/OA/OA_DeliverPlan.cs @@ -139,6 +139,37 @@ get; set; } + + /// <summary> + /// 鐗╂祦鐘舵�� + /// </summary> + public int? Deliveredstatus + { + get; + set; + } + + /// <summary> + /// 绉讳氦绫诲瀷 1 瀹㈡埛缁忕悊 2 宸ュ巶鐗╂祦閮� + /// </summary> + public int? TransferType + { + get; + set; + } + + + /// <summary> + /// 绉讳氦绫诲瀷鍚嶇О + /// </summary> + public string TransferName + { + get; + set; + } + + + /// <summary> /// 绉讳氦鏃堕棿 /// </summary> @@ -720,7 +751,24 @@ this.CompanyName = isChange ? MyConvert.ConvertToString(value) : CompanyName; theValue = this.CompanyName; } - + else if ("Deliveredstatus".Equals(name, StringComparison.CurrentCultureIgnoreCase) || index == 59) + { + this.Deliveredstatus = isChange ? MyConvert.ConvertToInt32(value) : Deliveredstatus; + theValue = this.Deliveredstatus; + } + + else if ("TransferType".Equals(name, StringComparison.CurrentCultureIgnoreCase) || index == 60) + { + this.TransferType = isChange ? MyConvert.ConvertToInt32(value) : TransferType; + theValue = this.TransferType; + } + + else if ("TransferName".Equals(name, StringComparison.CurrentCultureIgnoreCase) || index == 61) + { + this.TransferName = isChange ? MyConvert.ConvertToString(value) : TransferName; + theValue = this.TransferName; + } + return theValue; -- Gitblit v1.9.1