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