feiyu02
2025-03-28 7d74f3fd087d4a8192ed556a6c2e3a2ea3c81cff
src/main/kotlin/cn/flightfeather/supervision/lightshare/service/impl/InspectionServiceImpl.kt
@@ -41,9 +41,9 @@
    }
    //根据巡查ID获取问题列表
    override fun findProblemListById(id: String): MutableList<ProblemlistVo> {
    override fun findProblemListById(id: String): MutableList<ProblemListVo> {
        val problemList = mutableListOf<ProblemlistVo>()
        val problemList = mutableListOf<ProblemListVo>()
        val inspection = inspectionMapper.selectByPrimaryKey(id)
        if (inspection != null) {
            val problemListVo = problemlistService.findByInspectionID(inspection.guid!!)