feiyu02
2025-01-23 698f8f0f22af4c66581ce284407e986ca036aec6
src/test/kotlin/com/flightfeather/uav/UAVApplicationTests.kt
@@ -1,15 +1,43 @@
package com.flightfeather.uav
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 realTimeDataService: RealTimeDataService
    @Autowired
    lateinit var gridDataDetailMapper: GridDataDetailMapper
    /**
     * 刷新每组数据的数据排名
     */
    @Test
    fun refreshDataRank() {
        for (i in 29..39) {
            val dataDetailList = gridDataDetailMapper.selectByExample(Example(GridDataDetail::class.java).apply {
                createCriteria().andEqualTo("dataId", i)
                orderBy("pm25").desc()
            })
            dataDetailList.forEachIndexed { i, d ->
                d?.rank = i + 1
                gridDataDetailMapper.updateByPrimaryKey(d)
            }
            println("finish --${i}")
        }
    }
    @Test
    fun contextLoads() {
@@ -30,4 +58,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)
    }
}