cjl
2023-10-14 4a50bd93dfcdedb85f117d25f89e67291eb65cf7
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
package com.moral.api.service;
 
import com.moral.api.entity.CityAqiYearly;
import com.baomidou.mybatisplus.extension.service.IService;
 
/**
 * <p>
 * 城市aqi年数据表 服务类
 * </p>
 *
 * @author moral
 * @since 2021-11-04
 */
public interface CityAqiYearlyService extends IService<CityAqiYearly> {
 
    //城市aqi年数据统计
    void insertCityAqiYearly();
 
}