zmc
2023-11-15 c47bac207b1f49d4cfe8cd98202a96865345a94f
1
2
3
4
5
6
7
8
9
10
11
12
13
14
package com.flightfeather.monitor.domain.ds1.mapper
 
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?> {
 
    fun dailyStatics(beginTime: LocalDateTime, endTime: LocalDateTime)
 
    fun monthlyStatics(beginTime: LocalDateTime, endTime: LocalDateTime, count: Int)
}