Keine Beschreibung

T_Sys_DictionaryValue.cs 2.0KB

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