From 24ac6e50da797cc3372f67f346618be86b86c4d1 Mon Sep 17 00:00:00 2001
From: username@email.com <yzy2002yzy@163.com>
Date: 星期五, 21 十一月 2025 15:06:15 +0800
Subject: [PATCH] 提交

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

diff --git a/CY_ECommercePlatform/CY.Model/OA/OA_Gongzuoneirong.cs b/CY_ECommercePlatform/CY.Model/OA/OA_Gongzuoneirong.cs
new file mode 100644
index 0000000..c3f68f8
--- /dev/null
+++ b/CY_ECommercePlatform/CY.Model/OA/OA_Gongzuoneirong.cs
@@ -0,0 +1,111 @@
+锘縰sing System;
+using CY.Infrastructure.Domain;
+using CY.Infrastructure.Common;
+namespace CY.Model
+{
+    /// <summary>
+    ///琛屾斂鐗╁搧绠$悊
+    /// </summary>
+    [Serializable]
+    public partial class OA_Gongzuoneirong : IAggregateRoot
+    {
+        public OA_Gongzuoneirong()
+        {
+        }
+        #region Model
+       
+
+
+        public int? Keyid { get; set; }
+        public Guid? MemberId { get; set; }
+        public string Gongzuozhize { get; set; }
+
+        
+
+        public int? Zerenren { get; set; }
+
+        public string ZerenrenName { get; set; }
+
+        public DateTime? LastUpdateTime { get; set; }
+
+
+        public string Updator { get; set; }
+
+        public DateTime? CreateTime { get; set; }
+
+
+        public string Creator { get; set; }
+
+
+
+        #endregion Model
+
+        #region Visiter
+        /// <summary>
+        /// 灞炴�ц闂櫒
+        /// </summary>
+        /// <param name="name">灞炴�у悕</param>
+        /// <param name="index">绱㈠紩</param>
+        /// <param name="isChange">鏄惁灏嗘寚瀹氬睘鎬ц缃负浼犲叆鍊�</param>
+        /// <param name="value">闇�瑕佽祴浜堢殑鍊�</param>
+        /// <returns>涓庡悕绉板搴旂殑灞炴�у��</returns>
+        public object Visiter(string name, int? index = -1, bool isChange = false, object value = null)
+        {
+            object theValue = null;
+            if ("Keyid".Equals(name, StringComparison.CurrentCultureIgnoreCase) || index == 1)
+            {
+                this.Keyid = isChange ? MyConvert.ConvertToInt(value) : Keyid;
+                theValue = this.Keyid;
+            }
+            else if ("MemberId".Equals(name, StringComparison.CurrentCultureIgnoreCase) || index == 2)
+            {
+                this.MemberId = isChange ? MyConvert.ConvertToGuid(value) : MemberId;
+                theValue = this.MemberId;
+            }
+            else if ("Gongzuozhize".Equals(name, StringComparison.CurrentCultureIgnoreCase) || index == 4)
+            {
+                this.Gongzuozhize = isChange ? MyConvert.ConvertToString(value) : Gongzuozhize;
+                theValue = this.Gongzuozhize;
+            }
+
+            else if ("Zerenren".Equals(name, StringComparison.CurrentCultureIgnoreCase) || index == 16)
+            {
+                this.Zerenren = isChange ? MyConvert.ConvertToInt(value) : Zerenren;
+                theValue = this.Zerenren;
+            }
+
+
+            else if ("ZerenrenName".Equals(name, StringComparison.CurrentCultureIgnoreCase) || index == 17)
+            {
+                this.ZerenrenName = isChange ? MyConvert.ConvertToString(value) : ZerenrenName;
+                theValue = this.ZerenrenName;
+            }
+
+
+            else if ("LastUpdateTime".Equals(name, StringComparison.CurrentCultureIgnoreCase) || index == 9)
+            {
+                this.LastUpdateTime = isChange ? MyConvert.ConvertToDateTime(value) : LastUpdateTime;
+                theValue = this.LastUpdateTime;
+            }
+            else if ("Updator".Equals(name, StringComparison.CurrentCultureIgnoreCase) || index == 10)
+            {
+                this.Updator = isChange ? MyConvert.ConvertToString(value) : Updator;
+                theValue = this.Updator;
+            }
+            else if ("CreateTime".Equals(name, StringComparison.CurrentCultureIgnoreCase) || index == 9)
+            {
+                this.CreateTime = isChange ? MyConvert.ConvertToDateTime(value) : CreateTime;
+                theValue = this.CreateTime;
+            }
+            else if ("Creator".Equals(name, StringComparison.CurrentCultureIgnoreCase) || index == 10)
+            {
+                this.Creator = isChange ? MyConvert.ConvertToString(value) : Creator;
+                theValue = this.Creator;
+            }
+
+
+            return theValue;
+        }
+        #endregion Visiter
+    }
+}
\ No newline at end of file

--
Gitblit v1.9.1