feiyu02
2023-10-24 70a7d1ec98064e1acb3130e56e16c45af52ade6c
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?>
interface DustStatisticsValueMapper : MyMapper<DustStatisticsValue?> {
    fun dailyStatics(beginTime: LocalDateTime, endTime: LocalDateTime)
    fun monthlyStatics(beginTime: LocalDateTime, endTime: LocalDateTime, count: Int)
}