From b2e89ca1b11f33417f3e83223c4aa188186c8155 Mon Sep 17 00:00:00 2001 From: feiyu02 <risaku@163.com> Date: 星期五, 05 七月 2024 17:38:18 +0800 Subject: [PATCH] 1. 新增走航报告自动道路识别模块 --- src/main/kotlin/com/flightfeather/uav/domain/repository/SegmentInfoRep.kt | 4 ++++ 1 files changed, 4 insertions(+), 0 deletions(-) diff --git a/src/main/kotlin/com/flightfeather/uav/domain/repository/SegmentInfoRep.kt b/src/main/kotlin/com/flightfeather/uav/domain/repository/SegmentInfoRep.kt index e508d45..b5daa84 100644 --- a/src/main/kotlin/com/flightfeather/uav/domain/repository/SegmentInfoRep.kt +++ b/src/main/kotlin/com/flightfeather/uav/domain/repository/SegmentInfoRep.kt @@ -15,4 +15,8 @@ fun insert(list: List<SegmentInfo>):Int { return segmentInfoMapper.insertList(list) } + + fun findList(segmentInfo: SegmentInfo): List<SegmentInfo?> { + return segmentInfoMapper.select(segmentInfo) + } } \ No newline at end of file -- Gitblit v1.9.3