feiyu02
2025-02-07 e133600480d5f688a8375db7708fe531b4726f4a
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?
}