feiyu02
2025-02-21 dacef58ee7c44dffdd40cb646435c2993ad7a217
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
}