feiyu02
2025-01-08 cf4a07510de9b954c3f7393d54206eece7d6ad4a
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
}