Commit 965f2f67 by fudahua

feat(notice): 新增目标管理通知类型

- 在 NoticeMessageTypeEnum 中添加 OBJECTIVES_CREATE 和 OBJECTIVES_CHANGE 两个新的通知类型
- 新增通知类型用于目标管理相关的消息推送
parent e889232b
......@@ -108,7 +108,10 @@ public enum NoticeMessageTypeEnum {
AUTHORIZED_LOGIN_NOTIFY(8001,"账号授权通知", NoticeMessageCategoryTypeEnum.AUTHORIZED.getType(),"authorized_login_notify","/pages/route/index?pageType=","hbapp_video_auth","authorizedLoginNotify","haobanNotice"),
AUTHORIZED_LOGOUT_NOTIFY(8002,"账号异常退出登录通知", NoticeMessageCategoryTypeEnum.AUTHORIZED.getType(),"authorized_logout_notify","/pages/route/index?pageType=","hbapp_video_auth","authorizedLogoutNotify","haobanNotice"),
DATA_EXPORT_NOTIFY(9001,"数据导出通知", NoticeMessageCategoryTypeEnum.OTHER.getType(),"data_export_notify","/pages/route/index?pageType=","hbapp_data_export","dataExportNotify","haobanNotice");
DATA_EXPORT_NOTIFY(9001,"数据导出通知", NoticeMessageCategoryTypeEnum.OTHER.getType(),"data_export_notify","/pages/route/index?pageType=","hbapp_data_export","dataExportNotify","haobanNotice"),
OBJECTIVES_CREATE(9002, "目标管理通知", NoticeMessageCategoryTypeEnum.OTHER.getType(), "objectivesCreate", "/pages/route/index?pageType=", "hbapp_task_kpi_detail", "objectivesCreate", "haobanNotice"),
OBJECTIVES_CHANGE(9003, "目标管理通知", NoticeMessageCategoryTypeEnum.OTHER.getType(), "objectivesChange", "/pages/route/index?pageType=", "hbapp_task_kpi_detail", "objectivesChange", "haobanNotice");
/**
* 消息类型
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment