鹤壁市长热线,前端git:http://192.168.1.222:3000/clq1010/CallCenter5.0WebUI.git 中的鹤壁12345分支

T_Call_CallRecords.cs 8.6KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327
  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_Call_CallRecords
  13. {
  14. public T_Call_CallRecords()
  15. { }
  16. #region Model
  17. private string _callid;
  18. private string _callnumber;
  19. private string _cusid;
  20. private string _cuscode;
  21. private int? _calltype = 0;
  22. private int? _callstate;
  23. private int? _dealtype;
  24. private DateTime? _begintime = DateTime.Now;
  25. private DateTime? _ivrstarttime;
  26. private DateTime? _ivrendtime;
  27. private DateTime? _ringstarttime;
  28. private DateTime? _ringendtime;
  29. private DateTime? _talkstarttime;
  30. private DateTime? _talkendtime;
  31. private DateTime? _endtime = DateTime.Now;
  32. private int? _longtime;
  33. private int? _ivrlongtime;
  34. private int? _ringlongtime;
  35. private int? _talklongtime;
  36. private int? _userid;
  37. private string _usercode;
  38. private string _username;
  39. private string _extnumber;
  40. private string _filepath;
  41. private bool _isexitworkorder = false;
  42. private int? _isdeal = 0;
  43. private int? _operatetype;
  44. private string _operateobject;
  45. private DateTime? _operatetime;
  46. private string _remark;
  47. private int? _myd;
  48. private int? _businesstype;
  49. private string _location;
  50. private int _callrecordsid;
  51. /// <summary>
  52. /// 呼叫编号
  53. /// </summary>
  54. public string CallId
  55. {
  56. set { _callid = value; }
  57. get { return _callid; }
  58. }
  59. /// <summary>
  60. /// 来电号码
  61. /// </summary>
  62. public string CallNumber
  63. {
  64. set { _callnumber = value; }
  65. get { return _callnumber; }
  66. }
  67. /// <summary>
  68. /// 客户id
  69. /// </summary>
  70. public string CusId
  71. {
  72. set { _cusid = value; }
  73. get { return _cusid; }
  74. }
  75. /// <summary>
  76. /// 客户编号
  77. /// </summary>
  78. public string CusCode
  79. {
  80. set { _cuscode = value; }
  81. get { return _cuscode; }
  82. }
  83. /// <summary>
  84. /// 呼叫类型,0呼入1呼出
  85. /// </summary>
  86. public int? CallType
  87. {
  88. set { _calltype = value; }
  89. get { return _calltype; }
  90. }
  91. /// <summary>
  92. /// 呼叫状态,0:未接通电话1已接通电话
  93. /// </summary>
  94. public int? CallState
  95. {
  96. set { _callstate = value; }
  97. get { return _callstate; }
  98. }
  99. /// <summary>
  100. /// 处理方式0:IVR处理1骚扰电话2自助服务3转值班电话4留言5呼损6人工处理
  101. /// </summary>
  102. public int? DealType
  103. {
  104. set { _dealtype = value; }
  105. get { return _dealtype; }
  106. }
  107. /// <summary>
  108. /// 开始时间
  109. /// </summary>
  110. public DateTime? BeginTime
  111. {
  112. set { _begintime = value; }
  113. get { return _begintime; }
  114. }
  115. /// <summary>
  116. /// ivr开始时间
  117. /// </summary>
  118. public DateTime? IvrStartTime
  119. {
  120. set { _ivrstarttime = value; }
  121. get { return _ivrstarttime; }
  122. }
  123. /// <summary>
  124. /// ivr结束时间
  125. /// </summary>
  126. public DateTime? IvrEndTime
  127. {
  128. set { _ivrendtime = value; }
  129. get { return _ivrendtime; }
  130. }
  131. /// <summary>
  132. /// 振铃开始时间
  133. /// </summary>
  134. public DateTime? RingStartTime
  135. {
  136. set { _ringstarttime = value; }
  137. get { return _ringstarttime; }
  138. }
  139. /// <summary>
  140. /// 振铃结束时间
  141. /// </summary>
  142. public DateTime? RingEndTime
  143. {
  144. set { _ringendtime = value; }
  145. get { return _ringendtime; }
  146. }
  147. /// <summary>
  148. /// 通话开始时间
  149. /// </summary>
  150. public DateTime? TalkStartTime
  151. {
  152. set { _talkstarttime = value; }
  153. get { return _talkstarttime; }
  154. }
  155. /// <summary>
  156. /// 通话结束时间
  157. /// </summary>
  158. public DateTime? TalkEndTime
  159. {
  160. set { _talkendtime = value; }
  161. get { return _talkendtime; }
  162. }
  163. /// <summary>
  164. /// 结束时间
  165. /// </summary>
  166. public DateTime? EndTime
  167. {
  168. set { _endtime = value; }
  169. get { return _endtime; }
  170. }
  171. /// <summary>
  172. /// 总时长(s)
  173. /// </summary>
  174. public int? LongTime
  175. {
  176. set { _longtime = value; }
  177. get { return _longtime; }
  178. }
  179. /// <summary>
  180. /// IVR时长(s)
  181. /// </summary>
  182. public int? IvrLongTime
  183. {
  184. set { _ivrlongtime = value; }
  185. get { return _ivrlongtime; }
  186. }
  187. /// <summary>
  188. /// 振铃时长(s)
  189. /// </summary>
  190. public int? RingLongTime
  191. {
  192. set { _ringlongtime = value; }
  193. get { return _ringlongtime; }
  194. }
  195. /// <summary>
  196. /// 通话时长(s)
  197. /// </summary>
  198. public int? TalkLongTime
  199. {
  200. set { _talklongtime = value; }
  201. get { return _talklongtime; }
  202. }
  203. /// <summary>
  204. /// 坐席id
  205. /// </summary>
  206. public int? UserId
  207. {
  208. set { _userid = value; }
  209. get { return _userid; }
  210. }
  211. /// <summary>
  212. /// 坐席工号
  213. /// </summary>
  214. public string UserCode
  215. {
  216. set { _usercode = value; }
  217. get { return _usercode; }
  218. }
  219. /// <summary>
  220. /// 坐席姓名
  221. /// </summary>
  222. public string UserName
  223. {
  224. set { _username = value; }
  225. get { return _username; }
  226. }
  227. /// <summary>
  228. /// 坐席分机号
  229. /// </summary>
  230. public string ExtNumber
  231. {
  232. set { _extnumber = value; }
  233. get { return _extnumber; }
  234. }
  235. /// <summary>
  236. /// 用于获取录音的编号
  237. /// </summary>
  238. public string FilePath
  239. {
  240. set { _filepath = value; }
  241. get { return _filepath; }
  242. }
  243. /// <summary>
  244. /// 是否录入工单
  245. /// </summary>
  246. public bool IsExitWorkOrder
  247. {
  248. set { _isexitworkorder = value; }
  249. get { return _isexitworkorder; }
  250. }
  251. /// <summary>
  252. /// 是否处理0未处理1已处理2注销
  253. /// </summary>
  254. public int? IsDeal
  255. {
  256. set { _isdeal = value; }
  257. get { return _isdeal; }
  258. }
  259. /// <summary>
  260. /// 操作类型,0正常1转移2三方通话
  261. /// </summary>
  262. public int? OperateType
  263. {
  264. set { _operatetype = value; }
  265. get { return _operatetype; }
  266. }
  267. /// <summary>
  268. /// 操作目标
  269. /// </summary>
  270. public string OperateObject
  271. {
  272. set { _operateobject = value; }
  273. get { return _operateobject; }
  274. }
  275. /// <summary>
  276. /// 操作时间
  277. /// </summary>
  278. public DateTime? OperateTime
  279. {
  280. set { _operatetime = value; }
  281. get { return _operatetime; }
  282. }
  283. /// <summary>
  284. /// 备注
  285. /// </summary>
  286. public string Remark
  287. {
  288. set { _remark = value; }
  289. get { return _remark; }
  290. }
  291. /// <summary>
  292. /// 满意度,1非常满意、2基本满意、3不满意
  293. /// </summary>
  294. public int? MYD
  295. {
  296. set { _myd = value; }
  297. get { return _myd; }
  298. }
  299. /// <summary>
  300. /// IVR中选择的业务类型
  301. /// </summary>
  302. public int? BusinessType
  303. {
  304. set { _businesstype = value; }
  305. get { return _businesstype; }
  306. }
  307. /// <summary>
  308. ///
  309. /// </summary>
  310. public string Location
  311. {
  312. set { _location = value; }
  313. get { return _location; }
  314. }
  315. /// <summary>
  316. /// 来电自增Id
  317. /// </summary>
  318. public int CallRecordsId
  319. {
  320. set { _callrecordsid = value; }
  321. get { return _callrecordsid; }
  322. }
  323. #endregion Model
  324. }
  325. }