using System; using System.Data; namespace DSWeb.Models { public class CrmKeyCodeSetEntity { public CrmKeyCodeSetEntity() { } private string _id; /// /// ID /// public string ID { get { return _id; } set { _id = value; } } private string _keytype; /// /// 上级ID /// public string KEYTYPE { get { return _keytype; } set { _keytype = value; } } private string _keyvalue; /// /// 值 /// public string KEYVALUE { get { return _keyvalue; } set { _keyvalue = value; } } } }