[6.6.0]数据闭环

This commit is contained in:
xuxinchao
2024-08-15 10:23:29 +08:00
parent 4e95a07d54
commit 2f7be03ce6
5 changed files with 48 additions and 0 deletions

View File

@@ -24,4 +24,15 @@ object CallerOrderListenerManager: CallerBase<IOrderListener>() {
}
}
/**
* 订单路线名称变化监听
* @param lineName 路线名称
*/
fun invokeOrderLineUpdate(lineName: String){
M_LISTENERS.forEach{
val listener = it.value
listener.onOrderLineUpdate(lineName)
}
}
}