[2.13.0_feat]消息盒子数据中心管理各类消息

This commit is contained in:
chenfufeng
2022-11-25 12:20:16 +08:00
parent 9ff67dc940
commit 3f3c7406e6
26 changed files with 545 additions and 88 deletions

View File

@@ -1,3 +1,6 @@
package com.mogo.eagle.core.data.msgbox
data class MsgBoxBean(val type: MsgBoxType, val bean: Any, var timestamp: Long = 0)
data class MsgBoxBean(val type: MsgBoxType, val bean: Any) {
var timestamp: Long = 0
var bean2Json: String = ""
}

View File

@@ -0,0 +1,3 @@
package com.mogo.eagle.core.data.msgbox
data class RecordBagMsg(var key: Long, var stat: Int, var id: Int, var type: Int, var fileName: String, var note: String)

View File

@@ -0,0 +1,3 @@
package com.mogo.eagle.core.data.msgbox
data class V2XMsg(var type: String = "", var content: String? = "", var tts: String? = "")