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