src/main/kotlin/com/flightfeather/uav/domain/repository/SatelliteGridRep.kt
@@ -38,6 +38,14 @@ }) } fun fetchGridGroup(id: Int): GridGroup? { return gridGroupMapper.selectByPrimaryKey(id) } fun fetchGridGroup(gridGroup: GridGroup): List<GridGroup?> { return gridGroupMapper.select(gridGroup) } fun fetchGridCell(groupId: Int): List<GridCell?> { return gridCellMapper.selectByExample(Example(GridCell::class.java).apply { createCriteria().andEqualTo("groupId", groupId)