feiyu02
2025-03-28 7d74f3fd087d4a8192ed556a6c2e3a2ea3c81cff
src/main/kotlin/cn/flightfeather/supervision/lightshare/service/InspectionService.kt
@@ -6,7 +6,7 @@
interface InspectionService {
    fun findProblemListById(id: String): List<ProblemlistVo>
    fun findProblemListById(id: String): List<ProblemListVo>
    fun findAll(): MutableList<Inspection>
@@ -24,8 +24,11 @@
    fun findGitListById(id: String): List<GitlistVo>
    fun getInspectionInfoByScene(sceneId: String, topTaskId: String): InspectionInfoVo
    fun getInspectionInfoByScene(sceneId: String, topTaskId: String): InspectionInfoVo?
    //获取月任务巡查统计信息
    fun getStatistic(topTaskId: String, sceneTypeId: String): BaseResponse<List<InspectionStatisticVo>>
    fun getStatistic(topTaskId: String, sceneTypeId: String): List<InspectionStatisticVo>
    //获取月任务巡查统计信息
    fun getStatistic(areaVo: AreaVo): List<InspectionStatisticVo>
}