StatAndAnalysisService.java 491 B

123456789101112
  1. package com.zoniot.ccrc.service;
  2. import com.zoniot.ccrc.dto.BuildingInfoListDto;
  3. import com.zoniot.ccrc.dto.MapStatisticalDto;
  4. import java.util.List;
  5. public interface StatAndAnalysisService {
  6. List<MapStatisticalDto> realTimeMapStatistical(Integer sysId, Integer type, String northEast, String southWest, Integer province, Integer city, Integer region, Integer community);
  7. List<MapStatisticalDto> mapStatistical(Integer type, List<BuildingInfoListDto> buildingInfoListDtoList);
  8. }