package cn.flightfeather.supervision.domain.mapper
|
|
import cn.flightfeather.supervision.domain.entity.AvgFumeMinuteValue
|
import cn.flightfeather.supervision.domain.util.MyMapper
|
import org.apache.ibatis.annotations.Mapper
|
|
@Mapper
|
interface AvgFumeMinuteValueMapper : MyMapper<AvgFumeMinuteValue>{
|
fun getRealTimeData():List<AvgFumeMinuteValue>
|
}
|