package com.flightfeather.uav.biz.sourcetrace.exceptiontype
|
|
import com.flightfeather.uav.biz.dataanalysis.model.ExceptionType
|
import com.flightfeather.uav.biz.sourcetrace.config.RTExcWindLevelConfig
|
|
/**
|
* 数据快速下降提醒
|
* @date 2025/7/3
|
* @author feiyu02
|
*/
|
class RTWarnChangeRate : BaseRTExcChangeRate {
|
constructor(config: RTExcWindLevelConfig):super(config)
|
constructor(config: RTExcWindLevelConfig, callback: NewPolluteClueCallback) : super(config, callback)
|
|
override fun getExceptionType(): ExceptionType {
|
return ExceptionType.TYPE10
|
}
|
|
override var changeRate = config.changeRateWarnDown
|
}
|