地铁二期项目正式开始

T_Call_CallRecords.cs 8.5KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395
  1. /** 版本信息模板在安装目录下,可自行修改。
  2. * T_Call_CallRecords.cs
  3. *
  4. * 功 能: N/A
  5. * 类 名: T_Call_CallRecords
  6. *
  7. * Ver 变更日期 负责人 变更内容
  8. * ───────────────────────────────────
  9. * V0.01 2015/2/5 13:53:47 N/A 初版
  10. *
  11. * Copyright (c) 2012 Maticsoft Corporation. All rights reserved.
  12. *┌──────────────────────────────────┐
  13. *│ 此技术信息为本公司机密信息,未经本公司书面同意禁止向第三方披露. │
  14. *│ 版权所有:动软卓越(北京)科技有限公司              │
  15. *└──────────────────────────────────┘
  16. */
  17. using System;
  18. namespace YTSoft.BaseCallCenter.Model
  19. {
  20. /// <summary>
  21. /// 通话记录表
  22. /// </summary>
  23. [Serializable]
  24. public partial class T_Call_CallRecords
  25. {
  26. public T_Call_CallRecords()
  27. {}
  28. #region Model
  29. private string _callid;
  30. private string _callnumber;
  31. private string _cusid;
  32. private string _cuscode;
  33. private int? _calltype=0;
  34. private int? _callstate;
  35. private int? _dealtype;
  36. private DateTime? _begintime= DateTime.Now;
  37. private DateTime? _ivrstarttime;
  38. private DateTime? _ivrendtime;
  39. private DateTime? _ringstarttime;
  40. private DateTime? _ringendtime;
  41. private DateTime? _talkstarttime;
  42. private DateTime? _talkendtime;
  43. private DateTime? _endtime= DateTime.Now;
  44. private int? _longtime;
  45. private int? _ivrlongtime;
  46. private int? _ringlongtime;
  47. private int? _talklongtime;
  48. private int? _userid;
  49. private string _usercode;
  50. private string _username;
  51. private string _extnumber;
  52. private string _filepath;
  53. private bool _isexitworkorder= false;
  54. private int? _isdeal=0;
  55. private int? _operatetype;
  56. private string _operateobject;
  57. private DateTime? _operatetime;
  58. private string _remark;
  59. private int? _myd;
  60. private int? _businesstype;
  61. private string _location;
  62. private int _callrecordsid;
  63. //座席组
  64. private string _groupcode;
  65. private string _TaskType;
  66. private string _TaskPhoneID;
  67. private string _TaskID;
  68. private int? _ActionID;
  69. private int? _ActionType;
  70. private int? _F_ServiceType;
  71. /// <summary>
  72. /// 呼叫编号
  73. /// </summary>
  74. public string CallId
  75. {
  76. set{ _callid=value;}
  77. get{return _callid;}
  78. }
  79. /// <summary>
  80. /// 来电号码
  81. /// </summary>
  82. public string CallNumber
  83. {
  84. set{ _callnumber=value;}
  85. get{return _callnumber;}
  86. }
  87. /// <summary>
  88. /// 客户id
  89. /// </summary>
  90. public string CusId
  91. {
  92. set{ _cusid=value;}
  93. get{return _cusid;}
  94. }
  95. /// <summary>
  96. /// 客户编号
  97. /// </summary>
  98. public string CusCode
  99. {
  100. set{ _cuscode=value;}
  101. get{return _cuscode;}
  102. }
  103. /// <summary>
  104. /// 呼叫类型,0呼入1呼出
  105. /// </summary>
  106. public int? CallType
  107. {
  108. set{ _calltype=value;}
  109. get{return _calltype;}
  110. }
  111. /// <summary>
  112. /// 人工服务类型 咨询请按1;投诉请按2;建议请按3;表扬请按4;挂失请按5;返回上级请按“*”号键;重新收听请按0
  113. /// </summary>
  114. public int? F_ServiceType
  115. {
  116. set { _F_ServiceType = value; }
  117. get { return _F_ServiceType; }
  118. }
  119. /// <summary>
  120. /// 呼叫状态,0:未接通电话1已接通电话
  121. /// </summary>
  122. public int? CallState
  123. {
  124. set{ _callstate=value;}
  125. get{return _callstate;}
  126. }
  127. /// <summary>
  128. /// 处理方式0:IVR处理1骚扰电话2自助服务3转值班电话4留言5呼损6人工处理
  129. /// </summary>
  130. public int? DealType
  131. {
  132. set{ _dealtype=value;}
  133. get{return _dealtype;}
  134. }
  135. /// <summary>
  136. /// 开始时间
  137. /// </summary>
  138. public DateTime? BeginTime
  139. {
  140. set{ _begintime=value;}
  141. get{return _begintime;}
  142. }
  143. /// <summary>
  144. /// ivr开始时间
  145. /// </summary>
  146. public DateTime? IvrStartTime
  147. {
  148. set{ _ivrstarttime=value;}
  149. get{return _ivrstarttime;}
  150. }
  151. /// <summary>
  152. /// ivr结束时间
  153. /// </summary>
  154. public DateTime? IvrEndTime
  155. {
  156. set{ _ivrendtime=value;}
  157. get{return _ivrendtime;}
  158. }
  159. /// <summary>
  160. /// 振铃开始时间
  161. /// </summary>
  162. public DateTime? RingStartTime
  163. {
  164. set{ _ringstarttime=value;}
  165. get{return _ringstarttime;}
  166. }
  167. /// <summary>
  168. /// 振铃结束时间
  169. /// </summary>
  170. public DateTime? RingEndTime
  171. {
  172. set{ _ringendtime=value;}
  173. get{return _ringendtime;}
  174. }
  175. /// <summary>
  176. /// 通话开始时间
  177. /// </summary>
  178. public DateTime? TalkStartTime
  179. {
  180. set{ _talkstarttime=value;}
  181. get{return _talkstarttime;}
  182. }
  183. /// <summary>
  184. /// 通话结束时间
  185. /// </summary>
  186. public DateTime? TalkEndTime
  187. {
  188. set{ _talkendtime=value;}
  189. get{return _talkendtime;}
  190. }
  191. /// <summary>
  192. /// 结束时间
  193. /// </summary>
  194. public DateTime? EndTime
  195. {
  196. set{ _endtime=value;}
  197. get{return _endtime;}
  198. }
  199. /// <summary>
  200. /// 总时长(s)
  201. /// </summary>
  202. public int? LongTime
  203. {
  204. set{ _longtime=value;}
  205. get{return _longtime;}
  206. }
  207. /// <summary>
  208. /// IVR时长(s)
  209. /// </summary>
  210. public int? IvrLongTime
  211. {
  212. set{ _ivrlongtime=value;}
  213. get{return _ivrlongtime;}
  214. }
  215. /// <summary>
  216. /// 振铃时长(s)
  217. /// </summary>
  218. public int? RingLongTime
  219. {
  220. set{ _ringlongtime=value;}
  221. get{return _ringlongtime;}
  222. }
  223. /// <summary>
  224. /// 通话时长(s)
  225. /// </summary>
  226. public int? TalkLongTime
  227. {
  228. set{ _talklongtime=value;}
  229. get{return _talklongtime;}
  230. }
  231. /// <summary>
  232. /// 坐席id
  233. /// </summary>
  234. public int? UserId
  235. {
  236. set{ _userid=value;}
  237. get{return _userid;}
  238. }
  239. /// <summary>
  240. /// 坐席工号
  241. /// </summary>
  242. public string UserCode
  243. {
  244. set{ _usercode=value;}
  245. get{return _usercode;}
  246. }
  247. /// <summary>
  248. /// 坐席姓名
  249. /// </summary>
  250. public string UserName
  251. {
  252. set{ _username=value;}
  253. get{return _username;}
  254. }
  255. /// <summary>
  256. /// 坐席分机号
  257. /// </summary>
  258. public string ExtNumber
  259. {
  260. set{ _extnumber=value;}
  261. get{return _extnumber;}
  262. }
  263. /// <summary>
  264. /// 用于获取录音的编号
  265. /// </summary>
  266. public string FilePath
  267. {
  268. set{ _filepath=value;}
  269. get{return _filepath;}
  270. }
  271. /// <summary>
  272. /// 是否录入工单
  273. /// </summary>
  274. public bool IsExitWorkOrder
  275. {
  276. set{ _isexitworkorder=value;}
  277. get{return _isexitworkorder;}
  278. }
  279. /// <summary>
  280. /// 是否处理0未处理1已处理2注销
  281. /// </summary>
  282. public int? IsDeal
  283. {
  284. set{ _isdeal=value;}
  285. get{return _isdeal;}
  286. }
  287. /// <summary>
  288. /// 操作类型,0正常1转移2三方通话
  289. /// </summary>
  290. public int? OperateType
  291. {
  292. set{ _operatetype=value;}
  293. get{return _operatetype;}
  294. }
  295. /// <summary>
  296. /// 操作目标
  297. /// </summary>
  298. public string OperateObject
  299. {
  300. set{ _operateobject=value;}
  301. get{return _operateobject;}
  302. }
  303. /// <summary>
  304. /// 操作时间
  305. /// </summary>
  306. public DateTime? OperateTime
  307. {
  308. set{ _operatetime=value;}
  309. get{return _operatetime;}
  310. }
  311. /// <summary>
  312. /// 备注
  313. /// </summary>
  314. public string Remark
  315. {
  316. set{ _remark=value;}
  317. get{return _remark;}
  318. }
  319. /// <summary>
  320. /// 满意度,1非常满意、2基本满意、3不满意
  321. /// </summary>
  322. public int? MYD
  323. {
  324. set{ _myd=value;}
  325. get{return _myd;}
  326. }
  327. /// <summary>
  328. /// IVR中选择的业务类型
  329. /// </summary>
  330. public int? BusinessType
  331. {
  332. set{ _businesstype=value;}
  333. get{return _businesstype;}
  334. }
  335. /// <summary>
  336. ///
  337. /// </summary>
  338. public string Location
  339. {
  340. set{ _location=value;}
  341. get{return _location;}
  342. }
  343. /// <summary>
  344. /// 来电自增Id
  345. /// </summary>
  346. public int CallRecordsId
  347. {
  348. set{ _callrecordsid=value;}
  349. get{return _callrecordsid;}
  350. }
  351. public string groupcode
  352. {
  353. set { _groupcode = value; }
  354. get { return _groupcode; }
  355. }
  356. public string TaskType
  357. {
  358. set { _TaskType = value; }
  359. get { return _TaskType; }
  360. }
  361. public string TaskPhoneID
  362. {
  363. set { _TaskPhoneID = value; }
  364. get { return _TaskPhoneID; }
  365. }
  366. public string TaskID
  367. {
  368. set { _TaskID = value; }
  369. get { return _TaskID; }
  370. }
  371. public int? ActionID
  372. {
  373. set { _ActionID = value; }
  374. get { return _ActionID; }
  375. }
  376. public int? ActionType
  377. {
  378. set { _ActionType = value; }
  379. get { return _ActionType; }
  380. }
  381. #endregion Model
  382. }
  383. }