人民医院API

T_Sys_DictionaryValue.cs 2.1KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889
  1. using System;
  2. namespace RMYY_CallCenter_Api.Model
  3. {
  4. /// <summary>
  5. /// T_Sys_DictionaryValue:实体类(属性说明自动提取数据库字段的描述信息)
  6. /// </summary>
  7. [Serializable]
  8. public partial class T_Sys_DictionaryValue
  9. {
  10. public T_Sys_DictionaryValue()
  11. { }
  12. #region Model
  13. private int _f_dictionaryvalueid;
  14. private string _f_dictionaryflag;
  15. private string _f_valuecode;
  16. private string _f_name;
  17. private int? _f_sort;
  18. private string _f_describe;
  19. private bool _f_state;
  20. private int _f_timeout;
  21. public int F_TimeOut
  22. {
  23. set { _f_timeout = value; }
  24. get { return _f_timeout; }
  25. }
  26. /// <summary>
  27. ///
  28. /// </summary>
  29. public int F_DictionaryValueId
  30. {
  31. set { _f_dictionaryvalueid = value; }
  32. get { return _f_dictionaryvalueid; }
  33. }
  34. /// <summary>
  35. ///
  36. /// </summary>
  37. public string F_DictionaryFlag
  38. {
  39. set { _f_dictionaryflag = value; }
  40. get { return _f_dictionaryflag; }
  41. }
  42. /// <summary>
  43. /// 超时时限设置
  44. /// </summary>
  45. public string F_ValueCode
  46. {
  47. set { _f_valuecode = value; }
  48. get { return _f_valuecode; }
  49. }
  50. /// <summary>
  51. ///
  52. /// </summary>
  53. public string F_Name
  54. {
  55. set { _f_name = value; }
  56. get { return _f_name; }
  57. }
  58. /// <summary>
  59. ///
  60. /// </summary>
  61. public int? F_Sort
  62. {
  63. set { _f_sort = value; }
  64. get { return _f_sort; }
  65. }
  66. /// <summary>
  67. ///
  68. /// </summary>
  69. public string F_Describe
  70. {
  71. set { _f_describe = value; }
  72. get { return _f_describe; }
  73. }
  74. /// <summary>
  75. ///
  76. /// </summary>
  77. public bool F_State
  78. {
  79. set { _f_state = value; }
  80. get { return _f_state; }
  81. }
  82. #endregion Model
  83. }
  84. }