app/src/main/java/cn/flightfeather/thirdapp/repository/TaskRepository.kt
@@ -62,12 +62,12 @@
            val resultList = ArrayList<Scense>()
            val tempList = sceneDao.getSceneByArea(taskVo.provincecode, taskVo.citycode, taskVo.districtcode)
            movList.forEach  {m ->
                tempList.forEach s@ {s ->
                for (s in tempList) {
                    if (s.guid == m.sguid) {
                        s.monitorNum = m.monitornum
                        s.inspectedNum = m.extension1?.toInt() ?: 0
                        resultList.add(s)
                        return@s
                        break
                    }
                }
            }