From 0add14097df300ccf917ed65d711b0a303fcb05f Mon Sep 17 00:00:00 2001
From: lg <999544862qq.com>
Date: 星期六, 14 九月 2024 11:50:27 +0800
Subject: [PATCH] 基础资料

---
 DevApp/Gs.DevApp/ToolBox/UtilityHelper.cs |   43 +++++++++++++++++++++++++++++++------------
 1 files changed, 31 insertions(+), 12 deletions(-)

diff --git a/DevApp/Gs.DevApp/ToolBox/UtilityHelper.cs b/DevApp/Gs.DevApp/ToolBox/UtilityHelper.cs
index 235ded3..a2c73a3 100644
--- a/DevApp/Gs.DevApp/ToolBox/UtilityHelper.cs
+++ b/DevApp/Gs.DevApp/ToolBox/UtilityHelper.cs
@@ -220,7 +220,7 @@
                             if (txt != null)
                             {
                                 txt.EditValue = strVal;
-                               // txt.Text = strVal;
+                                // txt.Text = strVal;
                             }
                             txt.Enabled = isEdt;
                             continue;
@@ -416,20 +416,39 @@
         /// </summary>
         /// <param name="input"></param>
         /// <returns></returns>
-        public static string ToCamelCase(string input)
+        public static string ToCamelCase(string propertyName)
         {
-            if (string.IsNullOrEmpty(input))
-                return input;
-
-            // 鍖归厤闈炲瓧姣嶆暟瀛楀瓧绗﹀悗鐨勭涓�涓瓧姣嶏紝骞跺皢鍏惰浆鎹负澶у啓
-            return Regex.Replace(
-                input,
-                "([a-z])([A-Z])",
-                "$1$2",
-                RegexOptions.CultureInvariant
-            ).Trim();
+            if (propertyName.Length > 0 && propertyName.All(char.IsUpper))
+                propertyName = propertyName.ToLower();
+            string dd = Regex.Replace(propertyName, @"_([a-z])", m => m.Groups[1].Value.ToUpper());
+            return dd;
         }
 
+        public class CboItemEntity
+        {
+            private object _text = 0;
+            private object _Value = "";
+            /// <summary>
+            /// 鏄剧ず鍊�
+            /// </summary>
+            public object Text
+            {
+                get { return this._text; }
+                set { this._text = value; }
+            }
+            /// <summary>
+            /// 瀵硅薄鍊�
+            /// </summary>
+            public object Value
+            {
+                get { return this._Value; }
+                set { this._Value = value; }
+            }
 
+            public override string ToString()
+            {
+                return this.Text.ToString();
+            }
+        }
     }
 }

--
Gitblit v1.9.3