From d5574b3631e7a9667d43fdf6e73a1d876e37c365 Mon Sep 17 00:00:00 2001 From: username@email.com <yzy2002yzy@163.com> Date: 星期四, 26 九月 2024 14:42:58 +0800 Subject: [PATCH] 客户增加合同查询 --- CY_ECommercePlatform/CY.Model/EC/EC_OrderBasicExtend.cs | 11 ++++++++++- 1 files changed, 10 insertions(+), 1 deletions(-) diff --git a/CY_ECommercePlatform/CY.Model/EC/EC_OrderBasicExtend.cs b/CY_ECommercePlatform/CY.Model/EC/EC_OrderBasicExtend.cs index 5e17b8e..798b6e9 100644 --- a/CY_ECommercePlatform/CY.Model/EC/EC_OrderBasicExtend.cs +++ b/CY_ECommercePlatform/CY.Model/EC/EC_OrderBasicExtend.cs @@ -510,6 +510,11 @@ get; set; } + + /// <summary> + /// 鍗板埛鏁伴噺鍗曚綅 + /// </summary> + public string yssldw { get; set; } #endregion #region Visiter @@ -905,7 +910,11 @@ this.shifouDelivery = isChange ? MyConvert.ConvertToInt32(value) : this.shifouDelivery; theValue = this.shifouDelivery; } - + else if ("yssldw".Equals(name, StringComparison.CurrentCultureIgnoreCase) || index == 96) + { + this.yssldw = isChange ? MyConvert.ConvertToString(value) : this.yssldw; + theValue = this.yssldw; + } #endregion return theValue; -- Gitblit v1.9.1