feiyu02
2025-01-03 0ddfab15b32dc054464d75c695999fa76c3b9b78
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
package com.flightfeather.uav.model
 
import java.math.BigDecimal
 
/**
 * Source of pollution
 * 污染源 基类
 */
open class BaseSOP(
    // 污染源标识
    var sourceId: String,
    var sourceName: String,
    var index: String
) {
    /**
     * 中心经度
     */
 
    var ciLongitude: BigDecimal? = null
 
    /**
     * 中心纬度
     */
 
    var ciLatitude: BigDecimal? = null
}