jinpengyong
2023-01-05 66309ec82964316c3ae032fdcf2742d59179922c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
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>
 * 服务类
 * </p>
 *
 * @author moral
 * @since 2021-07-01
 */
public interface MonitorPointService extends IService<MonitorPoint> {
 
    /**
    * @Description: 根据组织id和地区码(非必须条件)查询站点和设备
            * @Param: [form]
            * @return: java.util.List<com.moral.api.entity.MonitorPoint>
            * @Author: 陈凯裕
            * @Date: 2021/7/1
            */
    List<MonitorPoint> queryByOrgIdAndRegionCode(MonitorPointQueryForm form);
 
    /**
    * @Description: 根据组织id,查询所有的站点
            * @Param: [organizationId]
            * @return: java.util.List<com.moral.api.entity.MonitorPoint>
            * @Author: 陈凯裕
            * @Date: 2021/9/26
            */
    List<MonitorPoint> queryAllMonitorPoints(Integer organizationId);
 
    List<Map<String, Object>> getHourlyDataByMonitorPoint(Map map);
 
    /**
     * 监测站点数据导出
     * @param params
     * @return
     */
    List<Map<String, Object>> getHourlyDataDataV3(Map<String, Object> params);
 
 
}