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

T_Call_CallRecords.cs 8.8KB

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