cjl
2023-11-08 5c1d58556e9cd4c7603b5e16dc1640f61623af0b
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();
 
}