[2.13.0][fix]添加查询消息盒子历史数据

This commit is contained in:
chenfufeng
2022-12-01 11:52:52 +08:00
parent 3cd125dbb6
commit 79e4767cc0
10 changed files with 45 additions and 3 deletions

View File

@@ -1,5 +1,6 @@
package com.mogo.eagle.core.data.msgbox
enum class MsgBoxType {
// 按功能划分为几大类运营、通知、V2X模块、OBU模块、工控机Report、录制、交通等
OPERATION, NOTICE, V2X, OBU, REPORT, RECORD, TRAFFIC
}

View File

@@ -1,5 +1,6 @@
package com.mogo.eagle.core.data.msgbox
enum class MsgCategory {
// 按UI展示划分为三大类通知、系统信息、录制
NOTICE, SYS_INFO, RECORD_BAG
}

View File

@@ -0,0 +1,11 @@
package com.mogo.eagle.core.data.msgbox
import com.mogo.eagle.core.data.notice.NoticeNormalData
import com.mogo.eagle.core.data.notice.NoticeTrafficStylePushData
data class NoticeFrCloudMsg(
var noticeNormalData: NoticeNormalData? = null,
var trafficPushData: NoticeTrafficStylePushData? = null,
// 0:取NoticeTrafficStylePushData, 1:取NoticeNormalData
var type: Int = 0
)