1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
| package com.flightfeather.uav.lightshare.bean
|
| import com.flightfeather.uav.socket.eunm.FactorType
|
| /**
| * 监测因子数据统计
| * @date 2025/8/25 11:26
| * @author feiyu
| */
| data class FactorStatistics(
| // 监测因子类型
| val factor: FactorType,
| // 最小值
| val minValue: Double,
| // 最大值
| val maxValue: Double,
| // 均值
| val avgValue: Double
| )
|
|