using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace Muchinfo.MTPClient.Data.Model { /// /// 枚举常量字典 MTP2.0 /// public class DictionaryInfoModel { #region 字段备注 //FieldCode 枚举类型代码 string //FieldName 枚举类型名称 string //Key 枚举值 string //Value 枚举名称 string #endregion private string _FieldCode = ""; /// /// 枚举类型代码 /// public string FieldCode { get { return _FieldCode; } set { _FieldCode = value; } } private string _FieldName = ""; /// /// 枚举类型名称 /// public string FieldName { get { return _FieldName; } set { _FieldName = value; } } private string _Key = ""; /// /// 枚举值 /// public string Key { get { return _Key; } set { _Key = value; } } private string _Value = ""; /// /// 枚举名称 /// public string Value { get { return _Value; } set { _Value = value; } } } }