RealtimeMethods.cs 2.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980
  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. #endregion
  41. #region 大屏-数据展示
  42. public static string BsDataShowArea1 = "BsDataShowArea1";
  43. public static string BsDataShowArea2 = "BsDataShowArea2";
  44. public static string BsDataShowArea3 = "BsDataShowArea3";
  45. public static string BsDataShowArea4 = "BsDataShowArea4";
  46. public static string BsDataShowArea5 = "BsDataShowArea5";
  47. public static string BsDataShowArea6 = "BsDataShowArea6";
  48. public static string BsDataShowArea7 = "BsDataShowArea7";
  49. public static string BsDataShowArea8 = "BsDataShowArea8";
  50. #endregion
  51. #region 大屏-坐席数据
  52. public static string BsSeatStateDataShowArea1 = "BsSeatStateDataShowArea1";
  53. public static string BsSeatStateDataShowArea2 = "BsSeatStateDataShowArea2";
  54. public static string BsSeatStateDataShowArea3 = "BsSeatStateDataShowArea3";
  55. public static string BsSeatStateDataShowArea4 = "BsSeatStateDataShowArea4";
  56. #endregion
  57. #region 大屏数据
  58. public static string OrderCountStatistics = "OrderCountStatistics";
  59. public static string OrderHandlingDetail = "OrderHandlingDetail";
  60. #endregion
  61. #region 司法大屏
  62. public static string EnforcementOrderHandlingDetail = "EnforcementOrderHandlingDetail";
  63. #endregion
  64. }
  65. }