UU跑腿标准版

T_Call_Reason.cs 3.7KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146
  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_Call_Reason:实体类(属性说明自动提取数据库字段的描述信息)
  9. /// </summary>
  10. [Serializable]
  11. public partial class T_Call_Reason
  12. {
  13. public T_Call_Reason()
  14. { }
  15. #region Model
  16. private int _f_reasonid;
  17. private string _f_reasonname;
  18. private int? _f_parentid;
  19. private string _f_parentname;
  20. private string _f_allpid;
  21. private string _f_allpname;
  22. private int? _f_layer;
  23. private int? _f_ischildren;
  24. private int? _f_stype;
  25. private int? _f_deleteflag;
  26. private int? _f_createby;
  27. private string _f_createbycode;
  28. private string _f_createbyname;
  29. private DateTime? _f_createon;
  30. /// <summary>
  31. ///
  32. /// </summary>
  33. public int F_ReasonID
  34. {
  35. set { _f_reasonid = value; }
  36. get { return _f_reasonid; }
  37. }
  38. /// <summary>
  39. /// 来电原因名称
  40. /// </summary>
  41. public string F_ReasonName
  42. {
  43. set { _f_reasonname = value; }
  44. get { return _f_reasonname; }
  45. }
  46. /// <summary>
  47. /// 父级ID
  48. /// </summary>
  49. public int? F_ParentID
  50. {
  51. set { _f_parentid = value; }
  52. get { return _f_parentid; }
  53. }
  54. /// <summary>
  55. /// 父级名称
  56. /// </summary>
  57. public string F_ParentName
  58. {
  59. set { _f_parentname = value; }
  60. get { return _f_parentname; }
  61. }
  62. /// <summary>
  63. /// 父级所有ID
  64. /// </summary>
  65. public string F_AllPID
  66. {
  67. set { _f_allpid = value; }
  68. get { return _f_allpid; }
  69. }
  70. /// <summary>
  71. /// 全称
  72. /// </summary>
  73. public string F_AllPName
  74. {
  75. set { _f_allpname = value; }
  76. get { return _f_allpname; }
  77. }
  78. /// <summary>
  79. /// 目录级别
  80. /// </summary>
  81. public int? F_Layer
  82. {
  83. set { _f_layer = value; }
  84. get { return _f_layer; }
  85. }
  86. /// <summary>
  87. /// 是否包含子级:0是,1否
  88. /// </summary>
  89. public int? F_ISChildren
  90. {
  91. set { _f_ischildren = value; }
  92. get { return _f_ischildren; }
  93. }
  94. /// <summary>
  95. /// 展示格式 :1.复选,2.文本
  96. /// </summary>
  97. public int? F_SType
  98. {
  99. set { _f_stype = value; }
  100. get { return _f_stype; }
  101. }
  102. /// <summary>
  103. ///
  104. /// </summary>
  105. public int? F_DeleteFlag
  106. {
  107. set { _f_deleteflag = value; }
  108. get { return _f_deleteflag; }
  109. }
  110. /// <summary>
  111. ///
  112. /// </summary>
  113. public int? F_CreateBy
  114. {
  115. set { _f_createby = value; }
  116. get { return _f_createby; }
  117. }
  118. /// <summary>
  119. ///
  120. /// </summary>
  121. public string F_CreateByCode
  122. {
  123. set { _f_createbycode = value; }
  124. get { return _f_createbycode; }
  125. }
  126. /// <summary>
  127. ///
  128. /// </summary>
  129. public string F_CreateByName
  130. {
  131. set { _f_createbyname = value; }
  132. get { return _f_createbyname; }
  133. }
  134. /// <summary>
  135. ///
  136. /// </summary>
  137. public DateTime? F_CreateOn
  138. {
  139. set { _f_createon = value; }
  140. get { return _f_createon; }
  141. }
  142. #endregion Model
  143. }
  144. }