using System; namespace CallCenterApi.Model { /// /// T_Sys_DictionaryBase:实体类(属性说明自动提取数据库字段的描述信息) /// [Serializable] public partial class T_Sys_DictionaryBase { public T_Sys_DictionaryBase() { } #region Model private int _f_id; private string _f_dictionaryflag; private string _f_dictionaryname; private int? _f_sort; private string _f_describe; private bool _f_state; private string _f_groupcode; /// /// /// public int F_Id { set { _f_id = value; } get { return _f_id; } } /// /// /// public string F_DictionaryFlag { set { _f_dictionaryflag = value; } get { return _f_dictionaryflag; } } /// /// /// public string F_DictionaryName { set { _f_dictionaryname = value; } get { return _f_dictionaryname; } } /// /// /// public int? F_Sort { set { _f_sort = value; } get { return _f_sort; } } /// /// /// public string F_Describe { set { _f_describe = value; } get { return _f_describe; } } /// /// /// public bool F_State { set { _f_state = value; } get { return _f_state; } } /// /// /// public string F_GroupCode { set { _f_groupcode = value; } get { return _f_groupcode; } } #endregion Model } }