You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
|
using System;
|
|
|
|
|
using System.Data;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
namespace DSWeb.Models
|
|
|
|
|
{
|
|
|
|
|
public class CrmKeyCodeSetEntity
|
|
|
|
|
{
|
|
|
|
|
public CrmKeyCodeSetEntity()
|
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private string _id;
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// ID
|
|
|
|
|
/// </summary>
|
|
|
|
|
public string ID
|
|
|
|
|
{
|
|
|
|
|
get { return _id; }
|
|
|
|
|
set { _id = value; }
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private string _keytype;
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 上级ID
|
|
|
|
|
/// </summary>
|
|
|
|
|
public string KEYTYPE
|
|
|
|
|
{
|
|
|
|
|
get { return _keytype; }
|
|
|
|
|
set { _keytype = value; }
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private string _keyvalue;
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 值
|
|
|
|
|
/// </summary>
|
|
|
|
|
public string KEYVALUE
|
|
|
|
|
{
|
|
|
|
|
get { return _keyvalue; }
|
|
|
|
|
set { _keyvalue = value; }
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|