林火综合应急信息管理系统后端
guoshilong
2023-03-10 32995c21fea6034dad8834f28e23c7fb177eb423
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
package org.springblade.modules.dp.mapper;
 
import org.apache.ibatis.annotations.Param;
import org.springframework.stereotype.Repository;
 
import java.util.HashMap;
import java.util.List;
 
public interface ComprehensiveStatisticsMapper {
 
    List<HashMap<String, String>> getDataOverview();
 
    List<HashMap<String, String>> getDeptStatistics();
 
    List<HashMap<String,String>> getFireCallSource();
 
    List<HashMap<String, String>> getFireReportingTrend();
 
    List<HashMap<String, String>> getProneAreasStatistics(@Param("regionCode") String regionCode,@Param("limit") Integer limit);
}