道路线索应急巡查系统服务后台
feiyu02
2025-09-30 84569abda51ecf6c5549dec4cadee8d043422379
1
2
3
4
5
6
7
8
9
10
11
12
13
14
package com.flightfeather.grid.domain.ds1.mapper
 
import com.flightfeather.grid.domain.ds1.entity.ClueInternal
import com.flightfeather.grid.domain.util.MyMapper
import com.flightfeather.grid.vo.ClueVo
import org.apache.ibatis.annotations.Mapper
 
@Mapper
interface ClueInternalMapper : MyMapper<ClueInternal?> {
 
    fun getClue(sTime: String?, eTime: String?): List<ClueInternal?>
 
    fun getClueById(clueId: Int?): ClueInternal?
}