cjl
2024-08-09 a022ae9804d0c2f402711b6b5202319d853919cf
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();
 
}