zmc
2023-11-23 3ba74e7692143fd6dcf4dd885f80f95dfef8387e
src/main/java/com/flightfeather/monitor/domain/ds1/mapper/DustStatisticsValueMapper.kt
@@ -2,6 +2,7 @@
import com.flightfeather.monitor.domain.ds1.entity.DustStatisticsValue
import com.flightfeather.monitor.domain.util.MyMapper
import com.flightfeather.monitor.pojo.AnalysisDustData
import org.apache.ibatis.annotations.Mapper
import java.time.LocalDateTime
@@ -11,4 +12,10 @@
    fun dailyStatics(beginTime: LocalDateTime, endTime: LocalDateTime)
    fun monthlyStatics(beginTime: LocalDateTime, endTime: LocalDateTime, count: Int)
    /**
     * 根据条件排序查询
     */
    fun selectByOrder(siteName: String, beginTime: String, endTime: String, orderProp: String?, asc: Boolean):
            List<AnalysisDustData?>
}