From 40eacc41d6f70f64ffd8f1fd18a8e12bce3fd86d Mon Sep 17 00:00:00 2001
From: username@email.com <yzy2002yzy@163.com>
Date: 星期四, 16 十月 2025 12:10:34 +0800
Subject: [PATCH] 没有批准的就不显示在列表中

---
 CY_ECommercePlatform/CY.Model/OA/OA_ShebeiWeixiu.cs |   18 ++++++++++++++++--
 1 files changed, 16 insertions(+), 2 deletions(-)

diff --git a/CY_ECommercePlatform/CY.Model/OA/OA_ShebeiWeixiu.cs b/CY_ECommercePlatform/CY.Model/OA/OA_ShebeiWeixiu.cs
index d6b0e63..736bef2 100644
--- a/CY_ECommercePlatform/CY.Model/OA/OA_ShebeiWeixiu.cs
+++ b/CY_ECommercePlatform/CY.Model/OA/OA_ShebeiWeixiu.cs
@@ -24,6 +24,7 @@
         public decimal? WeixiuPrice { get; set; }
         public int? Zerenren { get; set; }
         public string ZerenrenName { get; set; }
+        public string ShebeiZerenrenName { get; set; }
         public decimal? DanzePrice { get; set; }
 
         public int? WeixiuShebeiId { get; set; }
@@ -34,7 +35,11 @@
 
         //鏄惁浠樿垂  1鏄�2鍚�
         public int? Shifoufufei { get; set; }
-        
+
+
+        //缁翠慨瀹℃壒鏄惁閫氳繃  1鎵瑰噯2涓嶆壒鍑�
+        public int? ApprovalStatus { get; set; }
+
 
         public DateTime? CreateTime { get; set; }
         public string Creator{ get; set; }
@@ -287,8 +292,17 @@
                 this.CateName = isChange ? MyConvert.ConvertToString(value) : CateName;
                 theValue = this.CateName;
             }
+            else if ("ShebeiZerenrenName".Equals(name, StringComparison.CurrentCultureIgnoreCase) || index == 22)
+            {
+                this.ShebeiZerenrenName = isChange ? MyConvert.ConvertToString(value) : ShebeiZerenrenName;
+                theValue = this.ShebeiZerenrenName;
+            }
+            else if ("ApprovalStatus".Equals(name, StringComparison.CurrentCultureIgnoreCase) || index == 23)
+            {
+                this.ApprovalStatus = isChange ? MyConvert.ConvertToInt32(value) : ApprovalStatus;
+                theValue = this.ApprovalStatus;
+            }
 
-            
 
             return theValue;
         }

--
Gitblit v1.9.1