市长热线演示版

T_Sys_DictionaryBase.cs 1.2KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. namespace HySoft.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. /// <summary>
  30. ///
  31. /// </summary>
  32. public string F_DictionaryName
  33. {
  34. set{ _f_dictionaryname=value;}
  35. get{return _f_dictionaryname;}
  36. }
  37. /// <summary>
  38. ///
  39. /// </summary>
  40. public int? F_Sort
  41. {
  42. set{ _f_sort=value;}
  43. get{return _f_sort;}
  44. }
  45. /// <summary>
  46. ///
  47. /// </summary>
  48. public string F_Describe
  49. {
  50. set{ _f_describe=value;}
  51. get{return _f_describe;}
  52. }
  53. /// <summary>
  54. ///
  55. /// </summary>
  56. public string F_State
  57. {
  58. set{ _f_state=value;}
  59. get{return _f_state;}
  60. }
  61. #endregion Model
  62. }
  63. }