[6.7.0] ui

This commit is contained in:
EmArrow
2024-09-26 18:16:53 +08:00
parent 07aabdcd2d
commit f981917d03
11 changed files with 51 additions and 15 deletions

View File

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

View File

@@ -71,4 +71,9 @@ interface IEagleBaseFunctionCall4Och {
*/
fun setOchPlateNumber(plateNumber: String?) {}
/**
* Och设置 登录手机号
*/
fun setOchLoginNo(loginNo: String?){}
}

View File

@@ -7,10 +7,12 @@ import com.mogo.eagle.core.data.enums.Carmodel
*/
interface IOchFunctionCallNotify {
fun init(){}
/**
* 网约车回调登陆信息
*/
fun notifyLoginInfo() {}
fun notifyLoginInfo(loginNo: String?) {}
// 车型变化回调
fun notifyCarMode(carModel: Carmodel)
@@ -18,6 +20,6 @@ interface IOchFunctionCallNotify {
// 车牌变化回调
fun notifyPlateNumber(plateNumber: String?)
fun LoginOut() {}
fun loginOut() {}
}