SVN r1009

SVN-Revision: r1009
This commit is contained in:
wyf
2025-09-28 08:43:19 +00:00
parent d6cd6d4819
commit f97d6ee052
15 changed files with 0 additions and 3749 deletions
@@ -1,38 +0,0 @@
using System;
using System.Collections.Generic;
using System.Data;
using System.Linq;
using System.Text;
namespace Lskj.PubBomAlter.Model
{
public class ComboBoxModel
{
public ComboBoxModel(DataRow _rowItem)
{
SourceItem = _rowItem;
}
public DataRow SourceItem;
public string ValueMember;
public string DisplayMember;
public string Text
{
get
{
return SourceItem[DisplayMember] + "";
}
}
public string Value
{
get
{
return SourceItem[ValueMember] + "";
}
}
public override string ToString()
{
return SourceItem[DisplayMember] + "";
}
}
}