123456789101112 |
- package com.zoniot.ccrc.service;
- import com.zoniot.ccrc.dto.BuildingInfoListDto;
- import com.zoniot.ccrc.dto.MapStatisticalDto;
- import java.util.List;
- public interface StatAndAnalysisService {
- List<MapStatisticalDto> realTimeMapStatistical(Integer sysId, Integer type, String northEast, String southWest, Integer province, Integer city, Integer region, Integer community);
- List<MapStatisticalDto> mapStatistical(Integer type, List<BuildingInfoListDto> buildingInfoListDtoList);
- }
|