地铁二期项目正式开始

T_Sys_DictionaryValue.cs 2.1KB

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