[dev_arch_opt_3.0] 封装obu显示数据

This commit is contained in:
lixiaopeng
2023-02-20 18:20:20 +08:00
parent ca1832210a
commit 6d2deb6582
7 changed files with 101 additions and 53 deletions

View File

@@ -0,0 +1,18 @@
package com.mogo.eagle.core.function.api.obu
/**
* OBU 数据保存
* @author lixiaopeng
* @date 2023-02-01
*/
interface IMoGoObuSaveMessageListener {
/**
* @param type 事件id类似与uuid
* @param content 事件内容
* @param tts 事件语音播报
*
*/
fun onMoGoObuSaveMessage(type: String, content: String, tts: String)
}

View File

@@ -13,5 +13,4 @@ interface IMoGoObuDcCombineListener {
*/
fun onMoGoObuDcCombineData(obuWarningData: ObuWarningEvent.ObuWarningData?)
}