[6.7.0] finish the func of car

This commit is contained in:
EmArrow
2024-09-25 21:17:52 +08:00
parent 6f05f9247b
commit 24d820cc64
35 changed files with 180 additions and 367 deletions

View File

@@ -0,0 +1,8 @@
package com.mogo.eagle.core.function.api.datacenter
interface IDataCenterBizListener {
fun invokeCarRes(res:Int){}
fun invokeCarNo(no:String?){}
}

View File

@@ -0,0 +1,9 @@
package com.mogo.eagle.core.function.api.datacenter
import com.mogo.eagle.core.function.api.base.IMoGoFunctionServerProvider
import com.mogo.eagle.core.function.api.och.IOchFunctionCallNotify
interface IDataCenterBizProvider: IMoGoFunctionServerProvider, IOchFunctionCallNotify {
}

View File

@@ -13,10 +13,10 @@ interface IOchFunctionCallNotify {
fun notifyLoginInfo() {}
// 车型变化回调
fun notifyCarMode(carModel: Carmodel?){}
fun notifyCarMode(carModel: Carmodel)
// 车牌变化回调
fun notifyPlateNumber(plateNumber: String?){}
fun notifyPlateNumber(plateNumber: String?)
fun LoginOut() {}