feiyu02
2025-07-03 c56e1e74426238939f229f0005828d05089715ff
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
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 : RTExcChangeRate {
    constructor(config: RTExcWindLevelConfig):super(config)
    constructor(config: RTExcWindLevelConfig, callback: NewPolluteClueCallback) : super(config, callback)
 
    override fun getExceptionType(): ExceptionType {
        return ExceptionType.TYPE10
    }
 
    override var changeRate = config.changeRateDown
}