feiyu02
2025-07-23 344d9006faa27ea65e3eaf5e8f9173aad2266038
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
package com.flightfeather.uav.model
 
import com.flightfeather.uav.socket.eunm.FactorType
 
/**
 * 单个污染源对某条监测数据产生的影响结果
 */
class BaseEffect(
//    污染源标识
    val sourceId: String,
    val sourceName: String,
    val index: String
){
    //    影响结果值
    val value = mutableListOf<Pair<FactorType, Double>>()
    //    分类标签
    val tag = mutableListOf<BaseTag>()
}