ab56a9bcf7
SVN-Revision: r240
34 lines
791 B
C#
34 lines
791 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
|
|
namespace Lskj.PubTaskPlan.Model
|
|
{
|
|
public class ComboBoxModel
|
|
{
|
|
/// <summary>
|
|
/// 隐藏值
|
|
/// </summary>
|
|
public int EditValue { get; set; }
|
|
/// <summary>
|
|
/// 显示值
|
|
/// </summary>
|
|
public string EditText { get; set; }
|
|
/// <summary>
|
|
/// 构造函数
|
|
/// </summary>
|
|
/// <param name="editValue"></param>
|
|
/// <param name="editText"></param>
|
|
public ComboBoxModel(int editValue, string editText)
|
|
{
|
|
EditValue = editValue;
|
|
EditText = editText;
|
|
}
|
|
public override string ToString()
|
|
{
|
|
return EditText;
|
|
}
|
|
}
|
|
}
|