package cn.flightfeather.supervision.lightshare.service
|
|
import cn.flightfeather.supervision.domain.ds1.entity.DustDataResult
|
import cn.flightfeather.supervision.lightshare.vo.AreaVo
|
|
/**
|
* 监测数据(包含扬尘监测、油烟监测等等所有监测数据)服务
|
* @date 2025/3/19
|
* @author feiyu02
|
*/
|
interface MonitorDataService {
|
|
fun uploadDustDataResult(dataList: List<DustDataResult>): Boolean
|
|
fun fetchDustDataResult(areaVo: AreaVo): List<DustDataResult?>
|
}
|