地铁二期项目正式开始

T_Sys_DictionaryBase.cs 1.3KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172
  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_DictionaryBase:实体类(属性说明自动提取数据库字段的描述信息)
  9. /// </summary>
  10. [Serializable]
  11. public partial class T_Sys_DictionaryBase
  12. {
  13. public T_Sys_DictionaryBase()
  14. {}
  15. #region Model
  16. private string _f_dictionaryflag;
  17. private string _f_dictionaryname;
  18. private int? _f_sort;
  19. private string _f_describe;
  20. private string _f_state;
  21. /// <summary>
  22. ///
  23. /// </summary>
  24. public string F_DictionaryFlag
  25. {
  26. set{ _f_dictionaryflag=value;}
  27. get{return _f_dictionaryflag;}
  28. }
  29. public string F_DictionaryFlagType
  30. {
  31. set;
  32. get;
  33. }
  34. /// <summary>
  35. ///
  36. /// </summary>
  37. public string F_DictionaryName
  38. {
  39. set{ _f_dictionaryname=value;}
  40. get{return _f_dictionaryname;}
  41. }
  42. /// <summary>
  43. ///
  44. /// </summary>
  45. public int? F_Sort
  46. {
  47. set{ _f_sort=value;}
  48. get{return _f_sort;}
  49. }
  50. /// <summary>
  51. ///
  52. /// </summary>
  53. public string F_Describe
  54. {
  55. set{ _f_describe=value;}
  56. get{return _f_describe;}
  57. }
  58. /// <summary>
  59. ///
  60. /// </summary>
  61. public string F_State
  62. {
  63. set{ _f_state=value;}
  64. get{return _f_state;}
  65. }
  66. #endregion Model
  67. }
  68. }