feiyu02
2025-09-12 61871594dfa0a5ac2c4d895d9ec4034feba57094
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 RTWarnChangeRate2 : RTExcChangeRate1 {
    constructor(config: RTExcWindLevelConfig):super(config)
    constructor(config: RTExcWindLevelConfig, callback: NewPolluteClueCallback) : super(config, callback)
 
    override fun getExceptionType(): ExceptionType {
        return ExceptionType.TYPE11
    }
 
    override var changeRate = config.changeRateWarnUp
}