cjl
2023-08-20 37c937a9a1f5e4d0c66764ded694ad29a4bc8cd0
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.CityWeatherForecast;
import com.baomidou.mybatisplus.extension.service.IService;
 
/**
 * <p>
 * 城市预测气象数据表 服务类
 * </p>
 *
 * @author moral
 * @since 2021-12-30
 */
public interface CityWeatherForecastService extends IService<CityWeatherForecast> {
 
    //城市明日逐小时预测气象数据insert
    void insertCityWeatherForecast();
 
}