[6.2.0]AI数据采集改版,数据由MIS后台动态获取

This commit is contained in:
xuxinchao
2023-11-15 19:54:47 +08:00
parent 70ce14ff58
commit 4d634a2a75
10 changed files with 252 additions and 240 deletions

View File

@@ -0,0 +1,19 @@
package com.mogo.eagle.core.function.call.devatools
import com.mogo.eagle.core.data.deva.badcase.AiDataEntity
import com.mogo.eagle.core.function.api.devatools.badcase.BadCaseNetListener
import com.mogo.eagle.core.function.call.base.CallerBase
object CallerDevaToolsNetManager: CallerBase<BadCaseNetListener>() {
/**
* AI数据采集数据回调
*/
fun invokeAiDataResponse(list: List<AiDataEntity>){
M_LISTENERS.forEach{
val listener = it.value
listener.onAiDataResponse(list)
}
}
}