| | |
| | | package com.moral.api.service; |
| | | |
| | | import com.alibaba.fastjson.JSONObject; |
| | | 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> queryByOrgIdAndRegionCode(MonitorPointQueryForm form); |
| | | |
| | | /** |
| | | * @Description: 根据地区码查询国控站数据 |
| | | * @Param: [regionCode] |
| | | * @Description: 根据组织id,查询所有的站点 |
| | | * @Param: [organizationId] |
| | | * @return: java.util.List<com.moral.api.entity.MonitorPoint> |
| | | * @Author: 陈凯裕 |
| | | * @Date: 2021/7/16 |
| | | * @Date: 2021/9/26 |
| | | */ |
| | | List<MonitorPoint> queryStateControlStationByRegionCode(Integer regionCode); |
| | | List<MonitorPoint> queryAllMonitorPoints(Integer organizationId); |
| | | |
| | | List<Map<String, Object>> getHourlyDataByMonitorPoint(Map map); |
| | | |
| | | /** |
| | | * 监测站点数据导出 |
| | | * @param params |
| | | * @return |
| | | */ |
| | | List<Map<String, Object>> getHourlyDataDataV3(Map<String, Object> params); |
| | | |
| | | |
| | | } |
| | | |