From 3d4963776d819b9c8de199b88fe624483f8f566d Mon Sep 17 00:00:00 2001 From: lg <999544862qq.com> Date: 星期六, 14 九月 2024 11:49:37 +0800 Subject: [PATCH] 基础资料 --- DevApp/Gs.DevApp/ToolBox/UtilityHelper.cs | 25 +++++++++++++++++++++++++ 1 files changed, 25 insertions(+), 0 deletions(-) diff --git a/DevApp/Gs.DevApp/ToolBox/UtilityHelper.cs b/DevApp/Gs.DevApp/ToolBox/UtilityHelper.cs index 3ff807d..a2c73a3 100644 --- a/DevApp/Gs.DevApp/ToolBox/UtilityHelper.cs +++ b/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(); + } + } } } -- Gitblit v1.9.3