lg
2024-09-14 3d4963776d819b9c8de199b88fe624483f8f566d
DevApp/Gs.DevApp/ToolBox/UtilityHelper.cs
@@ -424,6 +424,31 @@
            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();
            }
        }
    }
}