| | |
| | | package com.moral.api.service; |
| | | |
| | | import com.moral.api.dto.MonitoringStationDTO; |
| | | import com.moral.api.entity.MonitorPoint; |
| | | import com.baomidou.mybatisplus.extension.service.IService; |
| | | import com.moral.api.pojo.form.device.MonitorPointQueryForm; |
| | | |
| | | import java.util.List; |
| | | import java.util.Map; |
| | | |
| | | /** |
| | | * <p> |
| | |
| | | */ |
| | | List<MonitorPoint> queryAllMonitorPoints(Integer organizationId); |
| | | |
| | | List<Map<String, Object>> getHourlyDataByMonitorPoint(Map map); |
| | | |
| | | /** |
| | | * 监测站点数据导出 |
| | | * @param params |
| | | * @return |
| | | */ |
| | | List<Map<String, Object>> getHourlyDataDataV3(Map<String, Object> params); |
| | | |
| | | /** |
| | | * 监测站点数据导出 |
| | | * @param params |
| | | * @return |
| | | */ |
| | | List<Map<String, Object>> getHourlyDataDataV3Excel(Map<String, Object> params); |
| | | |
| | | List<MonitoringStationDTO> listMonitoringStationDTO(Map<String, Object> params, int reportType, String startTime, String endTime); |
| | | |
| | | } |
| | | |