From 36680087df02080833c319a7a70f083585fad295 Mon Sep 17 00:00:00 2001 From: feiyu02 <risaku@163.com> Date: 星期五, 09 五月 2025 12:27:33 +0800 Subject: [PATCH] 1. 添加了动态污染溯源相关功能逻辑 --- src/main/kotlin/com/flightfeather/uav/biz/dataanalysis/exceptiontype/ExceptionDataExceed.kt | 14 ++++++++------ 1 files changed, 8 insertions(+), 6 deletions(-) diff --git a/src/main/kotlin/com/flightfeather/uav/biz/dataanalysis/exceptiontype/ExceptionDataExceed.kt b/src/main/kotlin/com/flightfeather/uav/biz/dataanalysis/exceptiontype/ExceptionDataExceed.kt index 24decf6..3bf7937 100644 --- a/src/main/kotlin/com/flightfeather/uav/biz/dataanalysis/exceptiontype/ExceptionDataExceed.kt +++ b/src/main/kotlin/com/flightfeather/uav/biz/dataanalysis/exceptiontype/ExceptionDataExceed.kt @@ -4,25 +4,27 @@ import com.flightfeather.uav.biz.dataanalysis.model.DataAnalysisConfig import com.flightfeather.uav.biz.dataanalysis.model.ExceptionType import com.flightfeather.uav.domain.entity.BaseRealTimeData +import com.flightfeather.uav.socket.eunm.FactorType /** * 鏁版嵁瓒呮爣寮傚父鍒嗘瀽 */ +@Deprecated("鍘熻秴鏍囧垽瀹氶�昏緫璁惧畾鐨勮秴鏍囧�兼湁婕忔礊锛�") class ExceptionDataExceed(config: DataAnalysisConfig) : BaseExceptionContinuousSingle(config) { override fun getExceptionType(): ExceptionType = ExceptionType.TYPE2 - override fun judgeException(p: BaseRealTimeData?, n: BaseRealTimeData): List<Boolean> { - val res = mutableListOf<Boolean>() - repeat(config.factorCount) { i -> - val data = n.getByFactorIndex(i) - val limit = config.exceptionSetting.getByFactorIndex(i) + override fun judgeException(p: BaseRealTimeData?, n: BaseRealTimeData): MutableMap<FactorType, Boolean> { + val res = mutableMapOf<FactorType, Boolean>() + config.factorFilter.mainList().forEach { f -> + val data = n.getByFactorType(f) + val limit = config.exceptionSetting.getByFactorType(f) val bool = if (data != null && limit != null) { data >= limit } else { false } - res.add(bool) + res[f] = bool } return res } -- Gitblit v1.9.3