| | |
| | | package org.springblade.modules.dp.mapper; |
| | | |
| | | import com.baomidou.mybatisplus.core.mapper.BaseMapper; |
| | | import org.apache.ibatis.annotations.Param; |
| | | import org.springframework.stereotype.Repository; |
| | | |
| | | import java.util.HashMap; |
| | | import java.util.List; |
| | | |
| | | @Repository |
| | | public interface ComprehensiveStatisticsMapper { |
| | | |
| | | List<HashMap<String, String>> getDataOverview(); |
| | |
| | | |
| | | List<HashMap<String, String>> getFireReportingTrend(); |
| | | |
| | | List getProneAreasStatistics(@Param("regionCode") String regionCode,@Param("limit") Integer limit); |
| | | List<HashMap<String, String>> getProneAreasStatistics(@Param("regionCode") String regionCode,@Param("limit") Integer limit); |
| | | } |