[6.10.0]硬件初始化时机更改

This commit is contained in:
xuxinchao
2025-02-14 16:44:02 +08:00
parent 58c5d8a049
commit d179624eed
7 changed files with 58 additions and 7 deletions

View File

@@ -21,6 +21,10 @@ interface IDataCenterBizListener {
fun invokeLoginStatus(isLogin: Boolean){}
fun invokeProductChange(){}
fun invokeVehicleChange(){}
fun isLoginStatus(): Boolean{
return false
}

View File

@@ -35,4 +35,10 @@ interface IOchFunctionCallNotify {
// 登录状态变化
fun notifyLoginStatus(isLogin: Boolean)
//业务模式发生变化
fun onProductChange()
//车型发生变化
fun onVehicleChange()
}