From 9ed99486b5914f47710524c217a0ae4e7ac21e3b Mon Sep 17 00:00:00 2001 From: lizijie <lzjiiie@163.com> Date: Mon, 25 Apr 2022 13:34:39 +0800 Subject: [PATCH] 穿衣指数去掉时间参数 --- screen-api/src/main/java/com/moral/api/service/CityAqiDailyService.java | 10 ++++++++++ 1 files changed, 10 insertions(+), 0 deletions(-) diff --git a/screen-api/src/main/java/com/moral/api/service/CityAqiDailyService.java b/screen-api/src/main/java/com/moral/api/service/CityAqiDailyService.java index caf7754..57ed959 100644 --- a/screen-api/src/main/java/com/moral/api/service/CityAqiDailyService.java +++ b/screen-api/src/main/java/com/moral/api/service/CityAqiDailyService.java @@ -6,6 +6,7 @@ import com.moral.api.pojo.dto.cityAQI.CityPollutionLevel; import com.moral.api.pojo.dto.cityAQI.MonthlyPollutionLevel; import com.moral.api.pojo.form.aqi.*; +import com.moral.api.pojo.vo.cityAQI.CityAreaRangeVO; import com.moral.api.pojo.vo.cityAQI.PieChartOfPollutionLevelVO; import java.util.Date; @@ -103,5 +104,14 @@ */ List<String> airQualityBulletin(String regionCode,Date time); + /** + * @Description: ���������������������������������������������������(������7������) + * @Param: [regionCode, time] + * @return: java.util.List<com.moral.api.pojo.vo.cityAQI.CityAreaRangeVO> + * @Author: ��������� + * @Date: 2022/3/17 + */ + List<CityAreaRangeVO> cityAreaRange(Integer regionCode, Date time); + } -- Gitblit v1.8.0