[2.13.0][fix]添加查询消息盒子历史数据
This commit is contained in:
@@ -1,5 +1,6 @@
|
||||
package com.mogo.eagle.core.data.msgbox
|
||||
|
||||
enum class MsgBoxType {
|
||||
// 按功能划分为几大类:运营、通知、V2X模块、OBU模块、工控机Report、录制、交通等
|
||||
OPERATION, NOTICE, V2X, OBU, REPORT, RECORD, TRAFFIC
|
||||
}
|
||||
@@ -1,5 +1,6 @@
|
||||
package com.mogo.eagle.core.data.msgbox
|
||||
|
||||
enum class MsgCategory {
|
||||
// 按UI展示划分为三大类:通知、系统信息、录制
|
||||
NOTICE, SYS_INFO, RECORD_BAG
|
||||
}
|
||||
@@ -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
|
||||
)
|
||||
Reference in New Issue
Block a user