feiyu02
2024-04-25 0392c333ed3d987cb2ab3dac4e1a972cff405f21
src/main/kotlin/cn/flightfeather/supervision/domain/ds1/mapper/InspectionMapper.kt
@@ -2,6 +2,7 @@
import cn.flightfeather.supervision.domain.ds1.entity.Inspection
import cn.flightfeather.supervision.domain.util.MyMapper
import cn.flightfeather.supervision.lightshare.vo.InspectionInfoVo
import cn.flightfeather.supervision.lightshare.vo.InspectionStatisticVo
import org.apache.ibatis.annotations.Mapper
import kotlin.reflect.jvm.internal.impl.load.kotlin.JvmType
@@ -10,7 +11,7 @@
interface InspectionMapper:MyMapper<Inspection> {
    //获取污染场景版本主页的监管情况展示内容
    fun getInspectionInfoByScene(sceneId: String, topTaskId: String): List<Map<String, JvmType.Object>>
    fun getInspectionInfoByScene(sceneId: String, topTaskId: String): List<InspectionInfoVo?>
    //获取月任务巡查统计信息
    fun getStatistic(topTaskId: String, sceneTypeId: String): List<InspectionStatisticVo>