修改文件名称,添加push内容体字段

This commit is contained in:
liujing
2021-10-29 16:51:37 +08:00
parent 847e4bb926
commit 62f6609eaf
11 changed files with 35 additions and 28 deletions

View File

@@ -3,7 +3,7 @@ package com.mogo.eagle.core.function.call.hmi
import com.mogo.eagle.core.data.constants.MogoServicePaths
import com.mogo.eagle.core.data.enums.WarningDirectionEnum
import com.mogo.eagle.core.data.notice.NoticeNormalData
import com.mogo.eagle.core.data.notice.NoticePushData
import com.mogo.eagle.core.data.notice.NoticeTrafficStylePushData
import com.mogo.eagle.core.function.api.hmi.warning.IMoGoWaringProvider
import com.mogo.eagle.core.function.api.hmi.warning.IMoGoWarningStatusListener
import com.mogo.eagle.core.function.api.notice.IMoGoNoticeProvider
@@ -132,10 +132,10 @@ object CallerHmiManager : CallerBase() {
/**
* 呈现交通云公告弹窗(hmi)
*
* @param pushData
* @param trafficStylePushData
*/
fun showTrafficBanner(pushData: NoticePushData?) {
noticeProviderApi.showNoticeForTrafficWithData(pushData)
fun showTrafficBanner(trafficStylePushData: NoticeTrafficStylePushData?) {
noticeProviderApi.showNoticeForTrafficWithData(trafficStylePushData)
}
/**

View File

@@ -1,6 +1,5 @@
package com.mogo.eagle.core.function.call.notice;
import com.mogo.eagle.core.data.notice.NoticePushData;
import com.mogo.eagle.core.function.api.notice.IMoGoNoticeProvider;
import com.mogo.eagle.core.function.call.base.CallerBase;