package com.gkhy.fourierSpecialGasMonitor.service; import com.gkhy.fourierSpecialGasMonitor.commons.domain.Result; import com.gkhy.fourierSpecialGasMonitor.commons.model.PageQuery; import com.gkhy.fourierSpecialGasMonitor.entity.query.GasAtmospherePageQuery; import com.gkhy.fourierSpecialGasMonitor.entity.query.GasFluxPageQuery; import com.gkhy.fourierSpecialGasMonitor.entity.query.GasPageQuery; import com.gkhy.fourierSpecialGasMonitor.entity.req.GasAtmosphereLineChartReqDTO; import com.gkhy.fourierSpecialGasMonitor.entity.req.GasFluxLineChartReqDTO; import com.gkhy.fourierSpecialGasMonitor.entity.req.GasLineChartReqDTO; /** * @author Mr.huang * @decription * @date 2023/8/10 9:15 */ public interface MonitorDataService { Result gasLineChart(GasLineChartReqDTO reqDto); Result gasPage(PageQuery pageQuery); Result gasFluxLineChart(GasFluxLineChartReqDTO reqDto); Result gasFluxPage(PageQuery pageQuery); Result gasAtmosphereLineChart(GasAtmosphereLineChartReqDTO reqDto); Result gasAtmospherePage(PageQuery pageQuery); }