説明なし

T_Sys_DictionaryBase.cs 1.6KB

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