From f6cb981322bc4c2a27921ad0480dce7fb483a4d8 Mon Sep 17 00:00:00 2001
From: username@email.com <yzy2002yzy@163.com>
Date: 星期五, 10 四月 2026 13:23:54 +0800
Subject: [PATCH] 先提交一部分

---
 CY_ECommercePlatform/CY.Model/OA/OA_DeliverPlan.cs |   60 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
 1 files changed, 60 insertions(+), 0 deletions(-)

diff --git a/CY_ECommercePlatform/CY.Model/OA/OA_DeliverPlan.cs b/CY_ECommercePlatform/CY.Model/OA/OA_DeliverPlan.cs
index be3745d..2b4e16b 100644
--- a/CY_ECommercePlatform/CY.Model/OA/OA_DeliverPlan.cs
+++ b/CY_ECommercePlatform/CY.Model/OA/OA_DeliverPlan.cs
@@ -73,6 +73,8 @@
 
         public int? fapiaoshuliang { get; set; }
 
+        public string fapiaoshuliangName { get; set; }
+
 
 
         /// <summary>
@@ -368,6 +370,16 @@
             }
         }
 
+
+        /// <summary>
+        /// 鏈粯娆�
+        /// </summary>
+        public decimal? OrAllUnPayedMoney
+        {
+            get;
+            set;
+        }
+
         /// <summary>
         /// 鏈粯娆�
         /// </summary>
@@ -487,6 +499,34 @@
         }
 
         public string Wanjieren
+        {
+            get;
+            set;
+        }
+
+
+
+        public int? Chulistatus
+        {
+            get;
+            set;
+        }
+        public string ChulistatusName
+        {
+            get
+            {
+                return Chulistatus.HasValue && Chulistatus.Value == 1 ? "鈭�" : "脳";
+            }
+
+        }
+
+        public DateTime? ChuliTime
+        {
+            get;
+            set;
+        }
+
+        public string Chuliren
         {
             get;
             set;
@@ -905,6 +945,26 @@
                 this.Zerenoperater = isChange ? MyConvert.ConvertToString(value) : Zerenoperater;
                 theValue = this.Zerenoperater;
             }
+            else if ("OrAllUnPayedMoney".Equals(name, StringComparison.CurrentCultureIgnoreCase) || index == 71)
+            {
+                this.OrAllUnPayedMoney = isChange ? MyConvert.ConvertToDecimal(value) : OrAllUnPayedMoney;
+                theValue = this.OrAllUnPayedMoney;
+            }
+            else if ("Chulistatus".Equals(name, StringComparison.CurrentCultureIgnoreCase) || index == 72)
+            {
+                this.Chulistatus = isChange ? MyConvert.ConvertToInt32(value) : Chulistatus;
+                theValue = this.Chulistatus;
+            }
+            else if ("ChuliTime".Equals(name, StringComparison.CurrentCultureIgnoreCase) || index == 73)
+            {
+                this.ChuliTime = isChange ? MyConvert.ConvertToDateTime(value) : ChuliTime;
+                theValue = this.ChuliTime;
+            }
+            else if ("Chuliren".Equals(name, StringComparison.CurrentCultureIgnoreCase) || index == 74)
+            {
+                this.Chuliren = isChange ? MyConvert.ConvertToString(value) : Chuliren;
+                theValue = this.Chuliren;
+            }
 
 
 

--
Gitblit v1.9.1