fixed conflict

This commit is contained in:
lixiaopeng
2021-10-29 15:03:24 +08:00
parent 53d6fa24ac
commit 59c5d66cfe
4 changed files with 75 additions and 0 deletions

View File

@@ -1,5 +1,6 @@
package com.mogo.eagle.core.function.api.notice;
import com.mogo.eagle.core.data.notice.NoticeNormalData;
import com.mogo.eagle.core.data.notice.NoticePushData;
import com.mogo.eagle.core.function.api.base.IMoGoFunctionProvider;
@@ -16,4 +17,12 @@ public interface IMoGoNoticeProvider extends IMoGoFunctionProvider {
* @param pushData 推送消息体
*/
void showNoticeForTrafficWithData(NoticePushData pushData);
/**
* 呈现普通公告顶部弹框
*
* @param normalData 推送消息体
*/
void showNoticeNormalData(NoticeNormalData normalData);
}