From dac47617b37ccfb834cd73ce0ee725e1101de214 Mon Sep 17 00:00:00 2001 From: feiyu02 <risaku@163.com> Date: 星期四, 14 八月 2025 17:25:51 +0800 Subject: [PATCH] 2025.8.14 1. 动态溯源模块添加滑动平均异常计算(调试中) --- src/main/kotlin/com/flightfeather/uav/domain/mapper/SourceTraceMsgBlobMapper.kt | 20 ++++++++++++++++++++ 1 files changed, 20 insertions(+), 0 deletions(-) diff --git a/src/main/kotlin/com/flightfeather/uav/domain/mapper/SourceTraceMsgBlobMapper.kt b/src/main/kotlin/com/flightfeather/uav/domain/mapper/SourceTraceMsgBlobMapper.kt new file mode 100644 index 0000000..7802760 --- /dev/null +++ b/src/main/kotlin/com/flightfeather/uav/domain/mapper/SourceTraceMsgBlobMapper.kt @@ -0,0 +1,20 @@ +package com.flightfeather.uav.domain.mapper + +import com.flightfeather.uav.domain.MyMapper +import com.flightfeather.uav.domain.entity.SourceTraceMsgBlob +import com.flightfeather.uav.lightshare.bean.SourceTraceMsgVo +import org.apache.ibatis.annotations.Mapper +import org.apache.ibatis.annotations.Select +import java.util.* + +@Mapper +interface SourceTraceMsgBlobMapper : MyMapper<SourceTraceMsgBlob?> { + + fun selectWithBlob(deviceCode: String, startTime: Date, endTime: Date): List<SourceTraceMsgVo?> + + /** + * 閲嶇疆鑷id + */ + @Select("alter table source_trace_msg_blob auto_increment = #{param1}") + fun resetAutoIncrement(id: Int) +} \ No newline at end of file -- Gitblit v1.9.3