修复MTA事件缺失问题

This commit is contained in:
kehaoyuan
2020-01-03 10:50:36 +08:00
parent 2f9e9fe976
commit dd11883eab

View File

@ -2,6 +2,6 @@ package com.gh.gamecenter.entity
data class TrackableEntity(val event: String = "",
val key: String = "",
val cancelValue: String? = "",
val keyBackValue: String? = "",
val cancelValue: String? = null,
val keyBackValue: String? = null,
val logShowEvent: Boolean = false)