feiyu02
2021-12-16 49832a5bba94c816e83e7e74095106643f0a433e
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
}