道路线索应急巡查系统服务后台
feiyu02
2025-04-22 41548e262362faf603a71e066e01bd4ef46619d2
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
package com.flightfeather.grid.service
 
import com.flightfeather.grid.domain.ds1.entity.GridInfo
import com.flightfeather.grid.domain.ds1.entity.GridScheme
import com.flightfeather.grid.vo.BaseResponse
 
interface GridInfoService {
 
    fun createGrid(gridInfo: GridInfo): BaseResponse<GridInfo?>
 
    fun getGridList(schemeId: String): BaseResponse<List<GridInfo?>>
 
    fun updateGrid(gridInfo: GridInfo): BaseResponse<Boolean>
 
    fun deleteGrid(id: String): BaseResponse<Boolean>
}