package com.flightfeather.uav.biz.sourcetrace.exceptiontype
|
|
import com.flightfeather.uav.biz.sourcetrace.config.RTExcWindLevelConfig
|
|
/**
|
* 2 - 4级风,和风(风速1.6 - 7.9m/s及以下)状态下,数据突变异常
|
* @date 2025/5/29
|
* @author feiyu02
|
*/
|
class RTExcWindLevel4:BaseRTExcWindLevel {
|
|
constructor(config: RTExcWindLevelConfig) : super(config)
|
|
constructor(config: RTExcWindLevelConfig, callback: NewPolluteClueCallback) : super(config, callback)
|
|
override var windLevelCondition: RTExcWindLevelConfig.WindLevelCondition = config.windLevelCondition2
|
}
|