| | |
| | | import com.moral.api.entity.CityAqiMonthly; |
| | | import com.baomidou.mybatisplus.extension.service.IService; |
| | | |
| | | import java.util.Date; |
| | | import java.util.List; |
| | | import java.util.Map; |
| | | |
| | | /** |
| | | * <p> |
| | | * 城市aqi月数据表 服务类 |
| | |
| | | */ |
| | | public interface CityAqiMonthlyService extends IService<CityAqiMonthly> { |
| | | |
| | | /** |
| | | * @Description: 根据地区码和时间获取数据 |
| | | * @Param: [regionCode, startDate, endDate] |
| | | * @return: java.util.List<com.moral.api.entity.CityAqiMonthly> |
| | | * @Author: 陈凯裕 |
| | | * @Date: 2022/1/17 |
| | | */ |
| | | List<CityAqiMonthly> getCityAqiMonthByRegionCodeAndTime(Integer regionCode, Date startDate, Date endDate); |
| | | |
| | | /** |
| | | * @Description: 根据地区码和时间获取月度数据 |
| | | * @Param: [regionCode, time] |
| | | * @return: com.moral.api.entity.CityAqiMonthly |
| | | * @Author: 陈凯裕 |
| | | * @Date: 2022/3/14 |
| | | */ |
| | | CityAqiMonthly getCityAqiMonthByRegionCodeAndTime(Integer regionCode, Date time); |
| | | |
| | | //根据地区码获取空气质量排名通告数据 |
| | | Map<String, Object> airQualityRankingAnnouncement(Integer regionCode, Date time); |
| | | } |