feiyu02
2021-12-02 74ffc8ebf3a25d2e3cee758954ce6efc163cb864
1
2
3
4
5
6
7
8
9
10
11
12
package com.flightfeather.uav.model
 
/**
 * Source of pollution
 * 污染源 基类
 */
open class BaseSOP(
    // 污染源标识
    var sourceId: String,
    var sourceName: String,
    var index: String
)