[add] 1.添加push推送数据体bean 2.添加caller调hmi UI调起流程相关java类文件

This commit is contained in:
liujing
2021-10-28 20:09:04 +08:00
parent f1be75c2f6
commit f4e5949b4e
10 changed files with 224 additions and 73 deletions

View File

@@ -1,5 +1,6 @@
package com.mogo.eagle.core.function.api.notice;
import com.mogo.eagle.core.data.notice.NoticePushData;
import com.mogo.eagle.core.function.api.base.IMoGoFunctionProvider;
/**
@@ -9,4 +10,10 @@ import com.mogo.eagle.core.function.api.base.IMoGoFunctionProvider;
*/
public interface IMoGoNoticeProvider extends IMoGoFunctionProvider {
/**
* 呈现交警推送消息顶部弹框
*
* @param pushData 推送消息体
*/
void showNoticeForTrafficWithData(NoticePushData pushData);
}