package com.flightfeather.grid.service
|
|
import com.flightfeather.grid.constant.ConstantHttp
|
import com.flightfeather.grid.domain.ds1.entity.Clue
|
import com.flightfeather.grid.domain.ds1.entity.ClueInternal
|
import com.flightfeather.grid.utils.net.HttpMethod
|
import com.flightfeather.grid.vo.BaseResponse
|
import com.flightfeather.grid.vo.DataHead
|
|
interface ClueInternalService {
|
|
fun getClueInternal(
|
sTime: String?,
|
eTime: String?,
|
pageNum: Int? = ConstantHttp.DEFAULT_PAGE_NUM,
|
pageSize: Int? = ConstantHttp.DEFAULT_PAGE_SIZE,
|
): Pair<DataHead, List<ClueInternal?>>
|
|
|
fun searchClueInternal(clueInternal: ClueInternal): List<ClueInternal?>
|
|
fun createClueInternal(clueInternal: ClueInternal): Int
|
|
fun updateClueInternal(clueInternal: ClueInternal): Int
|
|
fun deleteClueInternal(clueInternal: ClueInternal): Int
|
}
|