lizijie
2021-12-24 76cf225f819b84ac017a2cb3e3231ea880eacdd6
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
package com.moral.api.service;
 
import com.moral.api.entity.GovMonitorPoint;
import com.baomidou.mybatisplus.extension.service.IService;
 
import java.util.List;
import java.util.Map;
 
/**
 * <p>
 * 服务类
 * </p>
 *
 * @author moral
 * @since 2021-09-16
 */
public interface GovMonitorPointService extends IService<GovMonitorPoint> {
 
    /**
     * @Description: 根据地区码查询国控站以及国控站数据
     * @Param: [regionCode, sensorCode]
     * @return: java.util.List<com.moral.api.entity.GovMonitorPoint>
     * @Author: 陈凯裕
     * @Date: 2021/9/24
     */
    List<GovMonitorPoint> queryGovMonitorPointAndDataByRegionCode(Integer regionCode, String sensorCode);
 
    /**
     * @Description: 通过组织id获取国控站点列表
     * @Param: [map]
     * @return: java.util.List<java.util.Map < java.lang.String, java.lang.Object>>
     * @Author: lizijie
     * @Date: 2021/9/23 15:32
     **/
    List<GovMonitorPoint> selectGovMonitorPointsByOrgid(Map map);
 
    /**
     * @Description: 通过guid和组织id获取绑定该站点设备的平均数据
     * @Param: [map]
     * @return: java.util.Map<java.lang.String, java.lang.Object>
     * @Author: lizijie
     * @Date: 2021/9/24 11:22
     **/
    Map<String, Object> queryGovMonitorPointHoutlyDatyByGuidsAndOrgid(Map map);
 
    List<Map<String, Object>> getGovMonitorPointsByOrganizationId(Integer organizationId);
}