From 8ca9d136d69ac111a2b99d5e30dd3e83c3f0b1ed Mon Sep 17 00:00:00 2001
From: username@email.com <yzy2002yzy@163.com>
Date: 星期一, 01 十二月 2025 13:15:40 +0800
Subject: [PATCH] 查看送货情况中,把“已送”的数字变成灰色  完成

---
 CY_ECommercePlatform/CY.Model/EC/EC_OrderBasicExtend.cs |   16 +++++++++++++++-
 1 files changed, 15 insertions(+), 1 deletions(-)

diff --git a/CY_ECommercePlatform/CY.Model/EC/EC_OrderBasicExtend.cs b/CY_ECommercePlatform/CY.Model/EC/EC_OrderBasicExtend.cs
index ed282cd..41bc903 100644
--- a/CY_ECommercePlatform/CY.Model/EC/EC_OrderBasicExtend.cs
+++ b/CY_ECommercePlatform/CY.Model/EC/EC_OrderBasicExtend.cs
@@ -340,6 +340,16 @@
             get;
             set;
         }
+
+        /// <summary>
+        /// 寮�绁ㄧ敵璇�
+        /// </summary>
+        public Guid? KaipiaoshenqingId
+        {
+            get;
+            set;
+        }
+
         /// <summary>
         /// 寮�绁ㄧ敵璇�
         /// </summary>
@@ -1437,8 +1447,12 @@
                 this.XiadanKeyid = isChange ? MyConvert.ConvertToInt32(value) : this.XiadanKeyid;
                 theValue = this.XiadanKeyid;
             }
+            else if ("KaipiaoshenqingId".Equals(name, StringComparison.CurrentCultureIgnoreCase) || index == 143)
+            {
+                this.KaipiaoshenqingId = isChange ? MyConvert.ConvertToGuid(value) : this.KaipiaoshenqingId;
+                theValue = this.KaipiaoshenqingId;
+            }
             
-
             #endregion
 
             return theValue;

--
Gitblit v1.9.1