feiyu02
2024-01-26 01eae19a4870033e879a3faa6749eece92926cab
src/main/kotlin/com/flightfeather/uav/model/BaseSOP.kt
@@ -1,5 +1,7 @@
package com.flightfeather.uav.model
import java.math.BigDecimal
/**
 * Source of pollution
 * 污染源 基类
@@ -9,4 +11,16 @@
    var sourceId: String,
    var sourceName: String,
    var index: String
)
) {
    /**
     * 中心经度
     */
    var ciLongitude: BigDecimal? = null
    /**
     * 中心纬度
     */
    var ciLatitude: BigDecimal? = null
}