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
| }
| }
|
|