| | |
| | | CityPollutionLevel days = calculateDaysByTimeAndSysArea(area, startTime, endTime); |
| | | //查询对比年度优良天气 |
| | | CityPollutionLevel compareDays = calculateDaysByTimeAndSysArea(area, compareStartTime, compareEndTime); |
| | | if(days==null||compareDays==null) |
| | | return null; |
| | | //查询年度数据 |
| | | List<CityAqiYearly> yearDataList = cityAqiYearlyService.getCityAqiYearlyByRegionCodeAndTime(Integer.parseInt(regionCode), startTime, endTime); |
| | | List<CityAqiYearly> compareYearDataList = cityAqiYearlyService.getCityAqiYearlyByRegionCodeAndTime(Integer.parseInt(regionCode), compareStartTime, compareEndTime); |