feiyu02
2024-07-05 b2e89ca1b11f33417f3e83223c4aa188186c8155
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
}