林火综合应急信息管理系统后端
guoshilong
2023-03-09 a084945f219ace036070bce83487e747c411b876
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
package org.springblade.modules.dp.service;
 
import java.util.HashMap;
import java.util.List;
 
public interface IComprehensiveStatisticsService {
    /**
     * 获取数据概览
     * @return
     */
    List<HashMap<String, String>> getDataOverview();
 
    /**
     * 获取入驻单位统计
     * @return
     */
    List<HashMap<String, String>> getDeptStatistics();
 
    /**
     * 获取火警事件来源
     * @return
     */
    List getFireCallSource();
 
    /**
     * 获取火警上报趋势
     * @return
     */
    List<HashMap<String, String>> getFireReportingTrend();
 
    /**
     * 获取易发区统计数据
     * @param regionCode 区域编号
     * @return
     */
    List<HashMap<String, String>> getProneAreasStatistics(String regionCode,Integer limit);
}