| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- namespace YTSoft.BaseCallCenter.Model
- {
- /// <summary>
- /// T_Sys_DictionaryBase:实体类(属性说明自动提取数据库字段的描述信息)
- /// </summary>
- [Serializable]
- public partial class T_Sys_DictionaryBase
- {
- public T_Sys_DictionaryBase()
- {}
- #region Model
- private string _f_dictionaryflag;
- private string _f_dictionaryname;
- private int? _f_sort;
- private string _f_describe;
- private string _f_state;
- /// <summary>
- ///
- /// </summary>
- public string F_DictionaryFlag
- {
- set{ _f_dictionaryflag=value;}
- get{return _f_dictionaryflag;}
- }
- public string F_DictionaryFlagType
- {
- set;
- get;
- }
- /// <summary>
- ///
- /// </summary>
- public string F_DictionaryName
- {
- set{ _f_dictionaryname=value;}
- get{return _f_dictionaryname;}
- }
- /// <summary>
- ///
- /// </summary>
- public int? F_Sort
- {
- set{ _f_sort=value;}
- get{return _f_sort;}
- }
- /// <summary>
- ///
- /// </summary>
- public string F_Describe
- {
- set{ _f_describe=value;}
- get{return _f_describe;}
- }
- /// <summary>
- ///
- /// </summary>
- public string F_State
- {
- set{ _f_state=value;}
- get{return _f_state;}
- }
- #endregion Model
- }
- }
|