package com.flightfeather.uav.biz.sourcetrace.exceptiontype
|
|
import com.flightfeather.uav.biz.sourcetrace.config.RTExcWindLevelConfig
|
|
/**
|
* 4 - 6级风,强风(风速8 - 13.8m/s)状态下,数据突变异常
|
* @date 2025/5/29
|
* @author feiyu02
|
*/
|
class RTExcWindLevel6:BaseRTExcWindLevel {
|
|
constructor(config: RTExcWindLevelConfig) : super(config)
|
|
constructor(config: RTExcWindLevelConfig, callback: NewPolluteClueCallback) : super(config, callback)
|
|
override var windLevelCondition: RTExcWindLevelConfig.WindLevelCondition = config.windLevelCondition3
|
}
|