1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
| package com.moral.api.service;
|
| import com.moral.api.entity.CityAqiMonthly;
| import com.baomidou.mybatisplus.extension.service.IService;
|
| import java.util.Date;
| import java.util.List;
|
| /**
| * <p>
| * 城市aqi月数据表 服务类
| * </p>
| *
| * @author moral
| * @since 2021-11-05
| */
| 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);
|
| }
|
|