[6.9.0][Feat]消息盒子新增数据上车类型

This commit is contained in:
chenfufeng
2024-12-25 14:22:34 +08:00
parent e1948f62f0
commit 6dffb13c35
2 changed files with 18 additions and 1 deletions

View File

@@ -2,5 +2,5 @@ package com.mogo.eagle.core.data.msgbox
enum class MsgBoxType {
// 按功能划分为几大类运营、通知、V2X模块、OBU模块、工控机Report、录制、交通、FM、语音、SSM、工控机相关等
OPERATION, NOTICE, V2X, OBU, REPORT, RECORD, TRAFFIC, FMINFO, VOICE, SSMINFO, AUTOPILOT, FSM
OPERATION, NOTICE, V2X, OBU, REPORT, RECORD, TRAFFIC, FMINFO, VOICE, SSMINFO, AUTOPILOT, FSM, NDE
}

View File

@@ -0,0 +1,17 @@
package com.mogo.eagle.core.data.msgbox
import android.util.Log
import com.mogo.eagle.core.utilcode.mogo.logger.CallerLogger
import java.io.Serializable
data class NDEMsg(var type: String = "", var title: String? = "", var des: String? = ""): Serializable {
private var timeStamp: Long = 0
init {
timeStamp = System.currentTimeMillis()
if (des.isNullOrEmpty()) {
CallerLogger.e("MsgBox", Log.getStackTraceString(Throwable()))
}
}
}