[6.10.0]接管记录页面和接管原因页面增加联动,OTA升级调整吐司提示内容

This commit is contained in:
xuxinchao
2025-02-25 19:01:15 +08:00
parent e8589516e1
commit 1dae78d0b0
5 changed files with 99 additions and 2 deletions

View File

@@ -0,0 +1,22 @@
package com.mogo.eagle.core.function.api.datacenter.takeover
import com.mogo.eagle.core.data.deva.report.TakeOverRecordInfo
/**
* 接管记录事件监听回调
*/
interface ITakeOverRecordEventListener {
/**
* 上传接管记录监听
* @param uploadRecordList 上传接管记录列表
*/
fun onUploadRecord(uploadRecordList: ArrayList<TakeOverRecordInfo>)
/**
* 删除接管记录监听
* @param removeRecordList 删除接管记录列表
*/
fun onRemoveRecord(removeRecordList:ArrayList<TakeOverRecordInfo>)
}