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