feiyu02
2025-01-03 0ddfab15b32dc054464d75c695999fa76c3b9b78
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?
}