From d34ca25b9754e49b2d1220ff9f0de6af9b734d99 Mon Sep 17 00:00:00 2001 From: username@email.com <yzy2002yzy@163.com> Date: 星期三, 23 四月 2025 08:59:57 +0800 Subject: [PATCH] 类型放前面 人放在最后面 客供文件就没有人 --- CY_ECommercePlatform/CY.Model/OA/OA_DeliverPlan.cs | 68 +++++++++++++++++++++++++++++++++ 1 files changed, 67 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..9700251 100644 --- a/CY_ECommercePlatform/CY.Model/OA/OA_DeliverPlan.cs +++ b/CY_ECommercePlatform/CY.Model/OA/OA_DeliverPlan.cs @@ -38,7 +38,13 @@ public Guid Keyid { get; set; } public Guid? YujihuikuanKeyid { get; set; } - + + + /// <summary> + /// 鍚堝苟閫佽揣鍗昳d + /// </summary> + public Guid? DeliverPlanPaicheid { get; set; } + /// <summary> /// OrderId /// </summary> @@ -139,6 +145,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> @@ -334,6 +371,13 @@ public string shoukuanshijian + { + get; + set; + } + + //閫佽揣鍗曞浘鐗囩殑灞曠ず + public string SonghuodanTupian { get; set; @@ -720,6 +764,28 @@ 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; + } + else if ("DeliverPlanPaicheid".Equals(name, StringComparison.CurrentCultureIgnoreCase) || index == 62) + { + this.DeliverPlanPaicheid = isChange ? MyConvert.ConvertToGuid(value) : DeliverPlanPaicheid; + theValue = this.DeliverPlanPaicheid; + } -- Gitblit v1.9.1