Notification.h 4.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136
  1. //
  2. // Notification.h
  3. // YidaHealth
  4. //
  5. // Created by 余衡武 on 2018/10/13.
  6. // Copyright © 2018年 余衡武. All rights reserved.
  7. //
  8. #ifndef Notification_h
  9. #define Notification_h
  10. /** webView重载通知 */
  11. #define WebviewReloadNotification @"WebviewReloadNotification"
  12. #pragma mark 用户冻结
  13. #define NotNameAccountFreeze @"NotNameAccountFreeze"
  14. #pragma mark 系统维护
  15. #define NotNameSystemMaintain @"NotNameSystemMaintain"
  16. #pragma mark 用户账号注销
  17. #define NotNameAccountDestroy @"NotNameAccountDestroy"
  18. #pragma mark 异地登陆
  19. #define AccountLoginWithOtherDeviceNotification @"AccountLoginWithOtherDeviceNotification"
  20. /*无有效时间*/
  21. #define PhoneNoVailTimeNotification @"PhoneNoVailTimeNotification"
  22. #pragma mark Token失效
  23. #define TokenIsInvalidNotification @"TokenIsInvalidNotification"
  24. /** WebSocket断开链接通知 退出登录调用logout时发送*/
  25. #define WebSocketDisconnectNotification @"WebSocketDisconnectNotification"
  26. #pragma mark 弹窗关闭
  27. #define NotNameAlertClose @"NotNameAlertClose"
  28. /**修改手机号码通知*/
  29. #define ChangeAccountNotification @"ChangeAccount"
  30. /*完成引导通知*/
  31. #define GuideOkNotification @"GuideOk"
  32. /*设置密码通知*/
  33. #define setPwdNotification @"setPwdNot"
  34. /*忘记密码通知*/
  35. #define forgetPwdNotification @"forgetPwdNot"
  36. /*忘记密码回到原来切面通知*/
  37. #define forgetPwdBackNotification @"forgetPwdBackNot"
  38. /*忘记密码 设置完成通知*/
  39. #define forgetPwdDidSetNotification @"forgetPwdDidSetNot"
  40. /*扫码切换通知*/
  41. #define scanChangeDeviceNotification @"scanChangeDeviceNot"
  42. /*扫码切换回到原来切面通知*/
  43. #define scanChangeDeviceBackNotification @"scanChangeDeviceBackNot"
  44. /*主动上锁通知*/
  45. #define lockBypwdNotification @"lockBypwdNot"
  46. /* 上传文件通知*/
  47. #define uploadFileBeginNotification @"uploadFileBeginNot"
  48. /*上传文件更新通知*/
  49. #define uploadFileRefreshNotification @"uploadFileRefreshNot"
  50. /* 上传文件暂停通知*/
  51. #define uploadFileSuspendNotification @"uploadFileSuspendNot"
  52. /* 上传备份通知*/
  53. #define backupsFileBeginNotification @"backupsFileBeginNot"
  54. /*备份文件更新通知*/
  55. #define backupsFileRefreshNotification @"backupsFileRefreshNot"
  56. /* 下载缩略图通知*/
  57. #define downloadThumbnailBeginNotification @"downloadThumbnailBeginNot"
  58. /* 下载文件通知*/
  59. #define downloadFileBeginNotification @"downloadFileBeginNot"
  60. /*下载文件更新通知*/
  61. #define downloadFileRefreshNotification @"downloadFileRefreshNot"
  62. /* 创建文件夹通知*/
  63. #define createFolderBeginNotification @"createFolderBeginNot"
  64. /* 创建文件夹通知*/
  65. #define createFolderDoneNotification @"createFolderDoneNot"
  66. /* 获取文件夹通知*/
  67. #define getFolderListBeginNotification @"getFolderListBeginNot"
  68. /* 获取文件夹完成通知*/
  69. #define getFolderListDoneNotification @"getFolderListDoneNot"
  70. /* 搜索云机对应文件*/
  71. #define searchFileListBeginNotification @"searchFileListBeginNot"
  72. /* 搜索云机对应文件*/
  73. #define searchFileListDoneNotification @"searchFileListDoneNoti"
  74. /*获取云机基本信息通知*/
  75. #define getCouldPhoneBaseInfoNotification @"getCouldPhoneBaseInfoNot"
  76. /*获取云机系统信息通知*/
  77. #define getCouldPhoneSysInfoNotification @"getCouldPhoneSysInfoNot"
  78. /*获取云机TV投屏通知*/
  79. #define getCouldPhoneTvStatusNotification @"getCouldPhoneTvStatusNot"
  80. #define PlayerViewControlBtnTouchBeganNotification @"PlayerViewControlBtnTouchBeganNotification" // 云手机推流界面 控制按钮开始点击
  81. #define PlayerViewControlBtnTouchEndNotification @"PlayerViewControlBtnTouchEndNotification" /// // 云手机推流界面 控制按钮结束点击
  82. ///
  83. #pragma mark 正在超分设置
  84. #define GetRbdDeviceNotification @"GetRbdDeviceNotification"
  85. /*系统音量变化*/
  86. #define AVSystemController_SystemVolumeDidChangeNotification @"AVSystemController_SystemVolumeDidChangeNotification"
  87. /*网络变化*/
  88. #define NetWorkChangeNotification @"NetWorkChangeNotification"
  89. #pragma mark 断开连接
  90. #define NotNameByCONNECT_DISCONNECT @"CONNECT_DISCONNECT"
  91. #pragma mark 支付回调
  92. #define NotNameAirpayOrWXorderNum @"NotNameAirpayOrWXorderNum"
  93. #pragma mark 安全支付结果通知
  94. #define NotificationNameBySafepayResult @"SafepayResult" //
  95. /*显示声音和画面 */
  96. #define ShowImgAndVoiceNotification @"ShowImgAndVoiceNot"
  97. //显示密码页面 即不可展示图片和声音
  98. #define ShowPwdVCNotification @"ShowPwdVCNot"
  99. #endif /* Notification_h */