郑许地铁

T_CTI_Task.cs 6.9KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. namespace ZXDT.CallCenter.Model
  6. {
  7. /// <summary>
  8. /// 计划表
  9. /// </summary>
  10. [Serializable]
  11. public partial class T_CTI_Task
  12. {
  13. public T_CTI_Task()
  14. { }
  15. #region Model
  16. private long _taskid;
  17. private string _taskname;
  18. private int? _trunkgroupid;
  19. private string _callernum;
  20. private int? _calltype;
  21. private string _exinfo;
  22. private int? _maxtrunkcount = 1;
  23. private decimal? _intensitycoefficient;
  24. private string _itemtablename;
  25. private int? _state;
  26. private DateTime? _addtime = DateTime.Now;
  27. private int? _y_psort;
  28. private long? _y_tkmodelid;
  29. private int? _y_sxh = 0;
  30. private int? _y_fpcount = 0;
  31. private int? _y_yjcount = 0;
  32. private int? _y_hccount = 0;
  33. private int? _y_hscount = 0;
  34. private int? _y_htcount = 0;
  35. private int? _y_hmcount = 0;
  36. private int? _y_okcount = 0;
  37. private int? _y_rfcount = 0;
  38. private int? _y_conscount = 0;
  39. private int? _y_invlcount = 0;
  40. private int? _y_noanswercount = 0;
  41. private int? _y_shutdowncount = 0;
  42. /// <summary>
  43. ///
  44. /// </summary>
  45. public long TaskID
  46. {
  47. set { _taskid = value; }
  48. get { return _taskid; }
  49. }
  50. /// <summary>
  51. /// 计划名称
  52. /// </summary>
  53. public string TaskName
  54. {
  55. set { _taskname = value; }
  56. get { return _taskname; }
  57. }
  58. /// <summary>
  59. /// 中继组Id(不同于坐席组)
  60. /// </summary>
  61. public int? TrunkGroupID
  62. {
  63. set { _trunkgroupid = value; }
  64. get { return _trunkgroupid; }
  65. }
  66. /// <summary>
  67. /// 外呼时,客户手机显示的号码
  68. /// </summary>
  69. public string CallerNum
  70. {
  71. set { _callernum = value; }
  72. get { return _callernum; }
  73. }
  74. /// <summary>
  75. /// 1.转队列,2.转IVR,3.转电话
  76. /// </summary>
  77. public int? CallType
  78. {
  79. set { _calltype = value; }
  80. get { return _calltype; }
  81. }
  82. /// <summary>
  83. /// 与呼转类型对应,如果是队列,则为队列号;如果是IVR,则是IVR编号;如果是电话,则是电话号。
  84. /// </summary>
  85. public string ExInfo
  86. {
  87. set { _exinfo = value; }
  88. get { return _exinfo; }
  89. }
  90. /// <summary>
  91. /// 最大并发数
  92. /// </summary>
  93. public int? MaxTrunkCount
  94. {
  95. set { _maxtrunkcount = value; }
  96. get { return _maxtrunkcount; }
  97. }
  98. /// <summary>
  99. /// 呼叫强度当“呼叫类型”为转队列时,或者IVR最终转移到有效队列
  100. /// </summary>
  101. public decimal? IntensityCoefficient
  102. {
  103. set { _intensitycoefficient = value; }
  104. get { return _intensitycoefficient; }
  105. }
  106. /// <summary>
  107. /// 任务项所在的表名(T_CTI_CallResultX)
  108. /// </summary>
  109. public string ItemTableName
  110. {
  111. set { _itemtablename = value; }
  112. get { return _itemtablename; }
  113. }
  114. /// <summary>
  115. /// -1.删除,0.待CTI执行,1.CTI执行中,2.暂停,3.终止(添加时状态为暂停2,启动任务后状态为0待CTI执行,CTI开始执行这一项的时候状态为1,子项呼叫完后状态改为3))
  116. /// </summary>
  117. public int? State
  118. {
  119. set { _state = value; }
  120. get { return _state; }
  121. }
  122. /// <summary>
  123. ///
  124. /// </summary>
  125. public DateTime? AddTime
  126. {
  127. set { _addtime = value; }
  128. get { return _addtime; }
  129. }
  130. /// <summary>
  131. /// 营销计划外呼方式(0:自动外呼;1:预测外呼)
  132. /// </summary>
  133. public int? y_PSort
  134. {
  135. set { _y_psort = value; }
  136. get { return _y_psort; }
  137. }
  138. /// <summary>
  139. /// 话术模板Id
  140. /// </summary>
  141. public long? y_TkModelId
  142. {
  143. set { _y_tkmodelid = value; }
  144. get { return _y_tkmodelid; }
  145. }
  146. /// <summary>
  147. /// 页面显示顺序号
  148. /// </summary>
  149. public int? y_SXH
  150. {
  151. set { _y_sxh = value; }
  152. get { return _y_sxh; }
  153. }
  154. /// <summary>
  155. /// 分配量
  156. /// </summary>
  157. public int? y_FPCount
  158. {
  159. set { _y_fpcount = value; }
  160. get { return _y_fpcount; }
  161. }
  162. /// <summary>
  163. /// 接通量
  164. /// </summary>
  165. public int? y_YJCount
  166. {
  167. set { _y_yjcount = value; }
  168. get { return _y_yjcount; }
  169. }
  170. /// <summary>
  171. /// 呼出量
  172. /// </summary>
  173. public int? y_HCCount
  174. {
  175. set { _y_hccount = value; }
  176. get { return _y_hccount; }
  177. }
  178. /// <summary>
  179. /// 呼损量
  180. /// </summary>
  181. public int? y_HSCount
  182. {
  183. set { _y_hscount = value; }
  184. get { return _y_hscount; }
  185. }
  186. /// <summary>
  187. /// 呼通量
  188. /// </summary>
  189. public int? y_HTCount
  190. {
  191. set { _y_htcount = value; }
  192. get { return _y_htcount; }
  193. }
  194. /// <summary>
  195. /// 号码量
  196. /// </summary>
  197. public int? y_HMCount
  198. {
  199. set { _y_hmcount = value; }
  200. get { return _y_hmcount; }
  201. }
  202. /// <summary>
  203. /// 成功数量
  204. /// </summary>
  205. public int? y_OkCount
  206. {
  207. set { _y_okcount = value; }
  208. get { return _y_okcount; }
  209. }
  210. /// <summary>
  211. /// 拒绝数量
  212. /// </summary>
  213. public int? y_RFCount
  214. {
  215. set { _y_rfcount = value; }
  216. get { return _y_rfcount; }
  217. }
  218. /// <summary>
  219. /// 考虑数量
  220. /// </summary>
  221. public int? y_ConsCount
  222. {
  223. set { _y_conscount = value; }
  224. get { return _y_conscount; }
  225. }
  226. /// <summary>
  227. /// 无效号码数量
  228. /// </summary>
  229. public int? y_InvlCount
  230. {
  231. set { _y_invlcount = value; }
  232. get { return _y_invlcount; }
  233. }
  234. /// <summary>
  235. /// 无人接听
  236. /// </summary>
  237. public int? y_NoAnswerCount
  238. {
  239. set { _y_noanswercount = value; }
  240. get { return _y_noanswercount; }
  241. }
  242. /// <summary>
  243. /// 关机数量
  244. /// </summary>
  245. public int? y_ShutDownCount
  246. {
  247. set { _y_shutdowncount = value; }
  248. get { return _y_shutdowncount; }
  249. }
  250. #endregion Model
  251. }
  252. }