No Description

T_Call_CallRecords.cs 5.9KB

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