feiyu02
2025-07-21 38d72198bfcced01ed9513b978163e5cd1d84625
1
2
3
4
5
6
7
8
9
10
11
package com.flightfeather.uav.model
 
import com.flightfeather.uav.socket.eunm.FactorType
 
/**
 * Monitoring data
 * 监测数据 基类
 */
abstract class BaseMData {
    abstract fun getFactorData(type: FactorType): Double?
}