feiyu02
2025-04-11 635d762aef37b5de6cd2e34f4a076ab56d9a239d
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?
}