高新区管委会,以5.0标准版为基准,从双汇项目拷贝

T_Rec_RegRecords.cs 3.6KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153
  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. /// 登记记录表
  10. /// </summary>
  11. [Serializable]
  12. public partial class T_Rec_RegRecords
  13. {
  14. public T_Rec_RegRecords()
  15. { }
  16. #region Model
  17. private int _f_id;
  18. private string _f_reccode;
  19. private int _f_cusid;
  20. private int? _f_type;
  21. private int? _f_direction;
  22. private string _f_complained;
  23. private string _f_content;
  24. private string _f_remark;
  25. private string _f_createby;
  26. private DateTime? _f_createon;
  27. private int? _f_isdelete;
  28. private string _f_deleteon;
  29. private DateTime? _f_deleteby;
  30. private string _f_tel;
  31. private string _f_callid;
  32. /// <summary>
  33. ///
  34. /// </summary>
  35. public int F_ID
  36. {
  37. set { _f_id = value; }
  38. get { return _f_id; }
  39. }
  40. public string F_CallId
  41. {
  42. set { _f_callid = value; }
  43. get { return _f_callid; }
  44. }
  45. public string F_Tel
  46. {
  47. set { _f_tel = value; }
  48. get { return _f_tel; }
  49. }
  50. /// <summary>
  51. /// 登记编号
  52. /// </summary>
  53. public string F_RecCode
  54. {
  55. set { _f_reccode = value; }
  56. get { return _f_reccode; }
  57. }
  58. /// <summary>
  59. /// 档案id
  60. /// </summary>
  61. public int F_CusID
  62. {
  63. set { _f_cusid = value; }
  64. get { return _f_cusid; }
  65. }
  66. /// <summary>
  67. /// 登记类型
  68. /// </summary>
  69. public int? F_Type
  70. {
  71. set { _f_type = value; }
  72. get { return _f_type; }
  73. }
  74. /// <summary>
  75. /// 方向:0来电,1去电
  76. /// </summary>
  77. public int? F_Direction
  78. {
  79. set { _f_direction = value; }
  80. get { return _f_direction; }
  81. }
  82. /// <summary>
  83. /// 被投诉单位
  84. /// </summary>
  85. public string F_Complained
  86. {
  87. set { _f_complained = value; }
  88. get { return _f_complained; }
  89. }
  90. /// <summary>
  91. /// 登记内容/投诉事项
  92. /// </summary>
  93. public string F_Content
  94. {
  95. set { _f_content = value; }
  96. get { return _f_content; }
  97. }
  98. /// <summary>
  99. /// 备注
  100. /// </summary>
  101. public string F_Remark
  102. {
  103. set { _f_remark = value; }
  104. get { return _f_remark; }
  105. }
  106. /// <summary>
  107. ///
  108. /// </summary>
  109. public string F_CreateBy
  110. {
  111. set { _f_createby = value; }
  112. get { return _f_createby; }
  113. }
  114. /// <summary>
  115. ///
  116. /// </summary>
  117. public DateTime? F_CreateOn
  118. {
  119. set { _f_createon = value; }
  120. get { return _f_createon; }
  121. }
  122. /// <summary>
  123. ///
  124. /// </summary>
  125. public int? F_IsDelete
  126. {
  127. set { _f_isdelete = value; }
  128. get { return _f_isdelete; }
  129. }
  130. /// <summary>
  131. ///
  132. /// </summary>
  133. public string F_DeleteOn
  134. {
  135. set { _f_deleteon = value; }
  136. get { return _f_deleteon; }
  137. }
  138. /// <summary>
  139. ///
  140. /// </summary>
  141. public DateTime? F_DeleteBy
  142. {
  143. set { _f_deleteby = value; }
  144. get { return _f_deleteby; }
  145. }
  146. #endregion Model
  147. }
  148. }