feiyu02
2025-03-21 e5bdf2e02090357cbd580d54e6cd2406dd541760
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
package com.flightfeather.uav.model.underwaygrid
 
import com.flightfeather.uav.domain.entity.GridCell
import com.flightfeather.uav.model.BaseSOP
 
/**
 * 卫星污染源网格
 * @date 2025/3/21
 * @author feiyu02
 */
class GridCellSop : BaseSOP {
    val gridCell:GridCell
 
    constructor(gridCell: GridCell) : super(){
        this.gridCell = gridCell
    }
    constructor(gridCell: GridCell, sourceId: String, sourceName: String, index: String) : super(
        sourceId,
        sourceName, index
    ){
        this.gridCell = gridCell
    }
}