package com.flightfeather.grid.domain.ds1.mapper
|
|
import com.flightfeather.grid.domain.util.MyMapper
|
import com.flightfeather.grid.domain.ds1.entity.Clue
|
import com.flightfeather.grid.vo.ClueVo
|
import org.apache.ibatis.annotations.Mapper
|
|
@Mapper
|
interface ClueMapper : MyMapper<Clue?> {
|
|
fun getClue(sTime: String?, eTime: String?): List<ClueVo?>
|
|
fun getClueById(clueId: Int?): ClueVo?
|
}
|