[650]feat: 通用事件弹框,增加日志打印和相关埋点;

This commit is contained in:
aibingbing
2024-06-27 19:24:23 +08:00
parent 3f65bc3976
commit 5640289b8e
4 changed files with 46 additions and 8 deletions

View File

@@ -4,7 +4,7 @@ package com.mogo.eagle.core.data.v2x
* 路侧道路事件 弹框
*/
data class RoadV2NEventWindowBean(
var uuid: String, //当前事件弹框 ID show时生成用于dismiss时使用
var eventId: String, //当前事件弹框 ID show时生成用于dismiss时使用
var timestamp: Long = 0, //事件发生事件戳
var iconResId: Int, //事件icon resource id
var hintStr: String, //事件提示文案
@@ -14,6 +14,6 @@ data class RoadV2NEventWindowBean(
var lat: Double, //事件坐标-纬度
) {
override fun toString(): String {
return "RoadV2NEventWindowBean(uuid='$uuid', timestamp=$timestamp, iconResId=$iconResId, hintStr='$hintStr', isNeedTTS=$isNeedTTS, cameraIp='$cameraIp', lon=$lon, lat=$lat)"
return "RoadV2NEventWindowBean(eventId='$eventId', timestamp=$timestamp, iconResId=$iconResId, hintStr='$hintStr', isNeedTTS=$isNeedTTS, cameraIp='$cameraIp', lon=$lon, lat=$lat)"
}
}