From 538ba7a3bbc682f4537f1dd34f93feb2cf56b08e Mon Sep 17 00:00:00 2001
From: feiyu02 <risaku@163.com>
Date: 星期二, 14 十月 2025 17:32:04 +0800
Subject: [PATCH] 2025.10.14 1. 新增数据统计颗粒度选项,可选秒级数据、分钟数据进行数据统计 2. 典型隐患区域统计新增按照污染溯源区域进行分类统计的功能
---
src/test/kotlin/com/flightfeather/uav/UAVApplicationTests.kt | 26 ++++++++++++--------------
1 files changed, 12 insertions(+), 14 deletions(-)
diff --git a/src/test/kotlin/com/flightfeather/uav/UAVApplicationTests.kt b/src/test/kotlin/com/flightfeather/uav/UAVApplicationTests.kt
index 0f0e75f..7409619 100644
--- a/src/test/kotlin/com/flightfeather/uav/UAVApplicationTests.kt
+++ b/src/test/kotlin/com/flightfeather/uav/UAVApplicationTests.kt
@@ -1,21 +1,22 @@
package com.flightfeather.uav
-import com.flightfeather.uav.domain.mapper.ObdDataMapper
-import com.flightfeather.uav.lightshare.bean.ObdDataVo
-import com.google.gson.Gson
+import com.flightfeather.uav.domain.entity.GridDataDetail
+import com.flightfeather.uav.domain.mapper.GridDataDetailMapper
+import com.flightfeather.uav.lightshare.service.RealTimeDataService
import org.junit.Test
import org.junit.runner.RunWith
import org.slf4j.LoggerFactory
import org.springframework.beans.factory.annotation.Autowired
import org.springframework.boot.test.context.SpringBootTest
import org.springframework.test.context.junit4.SpringRunner
+import tk.mybatis.mapper.entity.Example
@RunWith(SpringRunner::class)
@SpringBootTest
class UAVApplicationTests {
@Autowired
- lateinit var obdDataMapper: ObdDataMapper
+ lateinit var realTimeDataService: RealTimeDataService
@Test
fun contextLoads() {
@@ -23,16 +24,7 @@
@Test
fun foo1(): Unit {
-// val map = GsonJsonParser().parseMap("{\"vin\":\"vin001\",\"protocol\":2}")
- val map = Gson().fromJson("{\"vin\":\"vin001\",\"protocol\":2,\"cmdCode\":2001}", ObdDataVo::class.java)
- val res = obdDataMapper.selectAll()
- res.forEach {
- println(it.obdVin)
- println(it.obdTime)
- }
- println(map.obdVin)
- println(map.obdProtocol)
- println(map.cmdCode)
+
}
@Test
@@ -45,4 +37,10 @@
log.error("error")
}
+ @Test
+ fun foo2() {
+ val r = realTimeDataService.getSecondData(null, null, "2021-01-13 14:30:00", "2021-01-13 14:45:00", 0, null, 10)
+ println(r)
+ }
+
}
--
Gitblit v1.9.3