feiyu02
2025-01-09 6c1e7c5ac983301c34f003415cda2ef7c7e176a6
src/main/kotlin/com/flightfeather/uav/domain/repository/MissionRep.kt
@@ -12,4 +12,8 @@
    fun findOne(missionCode:String?): Mission? {
        return missionMapper.selectByPrimaryKey(missionCode)
    }
    fun findList(mission: Mission): List<Mission?> {
        return missionMapper.select(mission)
    }
}