feiyu02
2025-05-09 36680087df02080833c319a7a70f083585fad295
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?
}