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

T_Rec_RegRecords.cs 5.8KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241
  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. private string _F_userName;
  33. private string _F_userPhone;
  34. private string _F_userSex;
  35. private string _F_userProvince;
  36. private string _F_userCity;
  37. private string _F_userArea;
  38. private string _F_ProblemType;
  39. private string _F_Unit;
  40. private string _F_UnitOffice;
  41. private string _F_CitizensType;
  42. private string _F_CaseParty;
  43. private string _F_PutRecord;
  44. private string _F_ZXZType;
  45. /// <summary>
  46. ///
  47. /// </summary>
  48. public int F_ID
  49. {
  50. set { _f_id = value; }
  51. get { return _f_id; }
  52. }
  53. public string F_ZXZType
  54. {
  55. set { _F_ZXZType = value; }
  56. get { return _F_ZXZType; }
  57. }
  58. public string F_userName
  59. {
  60. set { _F_userName = value; }
  61. get { return _F_userName; }
  62. }
  63. public string F_userPhone
  64. {
  65. set { _F_userPhone = value; }
  66. get { return _F_userPhone; }
  67. }
  68. public string F_userSex
  69. {
  70. set { _F_userSex = value; }
  71. get { return _F_userSex; }
  72. }
  73. public string F_userProvince
  74. {
  75. set { _F_userProvince = value; }
  76. get { return _F_userProvince; }
  77. }
  78. public string F_userCity
  79. {
  80. set { _F_userCity = value; }
  81. get { return _F_userCity; }
  82. }
  83. public string F_userArea
  84. {
  85. set { _F_userArea = value; }
  86. get { return _F_userArea; }
  87. }
  88. public string F_ProblemType
  89. {
  90. set { _F_ProblemType = value; }
  91. get { return _F_ProblemType; }
  92. }
  93. public string F_Unit
  94. {
  95. set { _F_Unit = value; }
  96. get { return _F_Unit; }
  97. }
  98. public string F_UnitOffice
  99. {
  100. set { _F_UnitOffice = value; }
  101. get { return _F_UnitOffice; }
  102. }
  103. public string F_CitizensType
  104. {
  105. set { _F_CitizensType = value; }
  106. get { return _F_CitizensType; }
  107. }
  108. public string F_CaseParty
  109. {
  110. set { _F_CaseParty = value; }
  111. get { return _F_CaseParty; }
  112. }
  113. public string F_PutRecord
  114. {
  115. set { _F_PutRecord = value; }
  116. get { return _F_PutRecord; }
  117. }
  118. public string F_CallId
  119. {
  120. set { _f_callid = value; }
  121. get { return _f_callid; }
  122. }
  123. public string F_Tel
  124. {
  125. set { _f_tel = value; }
  126. get { return _f_tel; }
  127. }
  128. /// <summary>
  129. /// 登记编号
  130. /// </summary>
  131. public string F_RecCode
  132. {
  133. set { _f_reccode = value; }
  134. get { return _f_reccode; }
  135. }
  136. /// <summary>
  137. /// 档案id
  138. /// </summary>
  139. public int F_CusID
  140. {
  141. set { _f_cusid = value; }
  142. get { return _f_cusid; }
  143. }
  144. /// <summary>
  145. /// 登记类型
  146. /// </summary>
  147. public int? F_Type
  148. {
  149. set { _f_type = value; }
  150. get { return _f_type; }
  151. }
  152. /// <summary>
  153. /// 方向:0来电,1去电
  154. /// </summary>
  155. public int? F_Direction
  156. {
  157. set { _f_direction = value; }
  158. get { return _f_direction; }
  159. }
  160. /// <summary>
  161. /// 被投诉单位
  162. /// </summary>
  163. public string F_Complained
  164. {
  165. set { _f_complained = value; }
  166. get { return _f_complained; }
  167. }
  168. /// <summary>
  169. /// 登记内容/投诉事项
  170. /// </summary>
  171. public string F_Content
  172. {
  173. set { _f_content = value; }
  174. get { return _f_content; }
  175. }
  176. /// <summary>
  177. /// 备注
  178. /// </summary>
  179. public string F_Remark
  180. {
  181. set { _f_remark = value; }
  182. get { return _f_remark; }
  183. }
  184. /// <summary>
  185. ///
  186. /// </summary>
  187. public string F_CreateBy
  188. {
  189. set { _f_createby = value; }
  190. get { return _f_createby; }
  191. }
  192. /// <summary>
  193. ///
  194. /// </summary>
  195. public DateTime? F_CreateOn
  196. {
  197. set { _f_createon = value; }
  198. get { return _f_createon; }
  199. }
  200. /// <summary>
  201. ///
  202. /// </summary>
  203. public int? F_IsDelete
  204. {
  205. set { _f_isdelete = value; }
  206. get { return _f_isdelete; }
  207. }
  208. /// <summary>
  209. ///
  210. /// </summary>
  211. public string F_DeleteOn
  212. {
  213. set { _f_deleteon = value; }
  214. get { return _f_deleteon; }
  215. }
  216. /// <summary>
  217. ///
  218. /// </summary>
  219. public DateTime? F_DeleteBy
  220. {
  221. set { _f_deleteby = value; }
  222. get { return _f_deleteby; }
  223. }
  224. #endregion Model
  225. }
  226. }