RealtimeMethods.cs 3.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394
  1. namespace Hotline.Api.Realtimes
  2. {
  3. public static class RealtimeMethods
  4. {
  5. #region 通讯通知
  6. /// <summary>
  7. /// 电话振铃通知
  8. /// </summary>
  9. public static string Ring = "Ring";
  10. /// <summary>
  11. /// 电话应答通知
  12. /// </summary>
  13. public static string Answered = "Answered";
  14. /// <summary>
  15. /// 电话挂断通知
  16. /// </summary>
  17. public static string Bye = "Bye";
  18. /// <summary>
  19. /// 小休审核通过通知
  20. /// </summary>
  21. public static string RestApplyPass = "RestApplyPass";
  22. /// <summary>
  23. /// 电话队列通知
  24. /// </summary>
  25. public static string CallQueue = "CallQueue";
  26. /// <summary>
  27. /// 回铃(去电)
  28. /// </summary>
  29. public static string Alert = "Alert";
  30. /// <summary>
  31. /// 话机空闲
  32. /// </summary>
  33. public static string Idle = "Idle";
  34. #endregion
  35. #region 系统信息通知
  36. /// <summary>
  37. /// 通知用户未读消息
  38. /// </summary>
  39. public static string CircularRecord = "CircularRecord";
  40. /// <summary>
  41. /// 工单补充消息通知
  42. /// </summary>
  43. public static string OrderComplementRecord = "OrderComplementRecord";
  44. #endregion
  45. #region 大屏-数据展示
  46. public static string BsDataShowArea1 = "BsDataShowArea1";
  47. public static string BsDataShowArea2 = "BsDataShowArea2";
  48. public static string BsDataShowArea3 = "BsDataShowArea3";
  49. public static string BsDataShowArea4 = "BsDataShowArea4";
  50. public static string BsDataShowArea5 = "BsDataShowArea5";
  51. public static string BsDataShowArea6 = "BsDataShowArea6";
  52. public static string BsDataShowArea7 = "BsDataShowArea7";
  53. public static string BsDataShowArea8 = "BsDataShowArea8";
  54. #endregion
  55. #region 大屏-坐席数据
  56. public static string BsSeatStateDataShowArea1 = "BsSeatStateDataShowArea1";
  57. public static string BsSeatStateDataShowArea2 = "BsSeatStateDataShowArea2";
  58. public static string BsSeatStateDataShowArea3 = "BsSeatStateDataShowArea3";
  59. public static string BsSeatStateDataShowArea4 = "BsSeatStateDataShowArea4";
  60. #endregion
  61. #region 大屏数据
  62. public static string OrderCountStatistics = "OrderCountStatistics";
  63. public static string OrderHandlingDetail = "OrderHandlingDetail";
  64. public static string OrderSecondaryHandlingDetail = "OrderSecondaryHandlingDetail";
  65. public static string OrderSourePoliceDetail = "OrderSourePoliceDetail";
  66. #endregion
  67. #region 司法大屏
  68. public static string EnforcementOrderHandlingDetail = "EnforcementOrderHandlingDetail";
  69. #endregion
  70. #region 话务排队信息
  71. public static string ToDayWaitNum = "ToDayWaitNum";
  72. public static string CurrentWaitNum = "CurrentWaitNum";
  73. #endregion
  74. }
  75. }