From b18a7c8e54b51a5caa400e55cb8cc428c0301a0c Mon Sep 17 00:00:00 2001
From: username@email.com <yzy2002yzy@163.com>
Date: 星期五, 21 一月 2022 17:27:22 +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