From a15f3dccec3c370f90005068350173768a5e222d Mon Sep 17 00:00:00 2001
From: zmc <zmc_li@foxmail.com>
Date: 星期四, 23 十一月 2023 16:07:53 +0800
Subject: [PATCH] 新增了根据点位名称查询设备编号的接口

---
 src/main/java/com/flightfeather/monitor/domain/ds1/mapper/DustStatisticsValueMapper.kt |    8 +++++++-
 1 files changed, 7 insertions(+), 1 deletions(-)

diff --git a/src/main/java/com/flightfeather/monitor/domain/ds1/mapper/DustStatisticsValueMapper.kt b/src/main/java/com/flightfeather/monitor/domain/ds1/mapper/DustStatisticsValueMapper.kt
index 9bfc3a5..683641e 100644
--- a/src/main/java/com/flightfeather/monitor/domain/ds1/mapper/DustStatisticsValueMapper.kt
+++ b/src/main/java/com/flightfeather/monitor/domain/ds1/mapper/DustStatisticsValueMapper.kt
@@ -3,6 +3,12 @@
 import com.flightfeather.monitor.domain.ds1.entity.DustStatisticsValue
 import com.flightfeather.monitor.domain.util.MyMapper
 import org.apache.ibatis.annotations.Mapper
+import java.time.LocalDateTime
 
 @Mapper
-interface DustStatisticsValueMapper : MyMapper<DustStatisticsValue?>
\ No newline at end of file
+interface DustStatisticsValueMapper : MyMapper<DustStatisticsValue?> {
+
+    fun dailyStatics(beginTime: LocalDateTime, endTime: LocalDateTime)
+
+    fun monthlyStatics(beginTime: LocalDateTime, endTime: LocalDateTime, count: Int)
+}
\ No newline at end of file

--
Gitblit v1.9.3