SVN r1008

SVN-Revision: r1008
This commit is contained in:
wyf
2025-09-28 08:41:23 +00:00
parent cccdda0f7c
commit d6cd6d4819
15 changed files with 3749 additions and 0 deletions
@@ -0,0 +1,38 @@
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] + "";
}
}
}