道路线索应急巡查系统服务后台
feiyu02
2025-04-25 79bd8ea222cc3518ec91dce3dfb30fcf387cf96d
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
package com.flightfeather.grid.service
 
import com.flightfeather.grid.domain.ds1.entity.GridScheme
import com.flightfeather.grid.vo.BaseResponse
 
interface GridSchemeService {
 
    fun getAllSchemes(): BaseResponse<List<GridScheme?>>
 
    fun createScheme(gridScheme: GridScheme): BaseResponse<Boolean>
 
    fun updateScheme(gridScheme: GridScheme): BaseResponse<Boolean>
 
    fun deleteScheme(id: String): BaseResponse<Boolean>
}