feiyu02
2024-08-29 e6cc379fbef57277568ee667ec07a508b3dcc479
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
}