| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889 |
- using System;
- namespace RMYY_CallCenter_Api.Model
- {
- /// <summary>
- /// T_Sys_DictionaryValue:实体类(属性说明自动提取数据库字段的描述信息)
- /// </summary>
- [Serializable]
- public partial class T_Sys_DictionaryValue
- {
- public T_Sys_DictionaryValue()
- { }
- #region Model
- private int _f_dictionaryvalueid;
- private string _f_dictionaryflag;
- private string _f_valuecode;
- private string _f_name;
- private int? _f_sort;
- private string _f_describe;
- private bool _f_state;
- private int _f_timeout;
- public int F_TimeOut
- {
- set { _f_timeout = value; }
- get { return _f_timeout; }
- }
- /// <summary>
- ///
- /// </summary>
- public int F_DictionaryValueId
- {
- set { _f_dictionaryvalueid = value; }
- get { return _f_dictionaryvalueid; }
- }
- /// <summary>
- ///
- /// </summary>
- public string F_DictionaryFlag
- {
- set { _f_dictionaryflag = value; }
- get { return _f_dictionaryflag; }
- }
- /// <summary>
- /// 超时时限设置
- /// </summary>
- public string F_ValueCode
- {
- set { _f_valuecode = value; }
- get { return _f_valuecode; }
- }
- /// <summary>
- ///
- /// </summary>
- public string F_Name
- {
- set { _f_name = value; }
- get { return _f_name; }
- }
- /// <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 bool F_State
- {
- set { _f_state = value; }
- get { return _f_state; }
- }
- #endregion Model
- }
- }
|