jinpengyong
2021-12-24 5c427a35595e2deb2c1a025ff9a4c164d498e01d
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
package com.moral.api.service;
 
import com.moral.api.entity.CityWeather;
import com.baomidou.mybatisplus.extension.service.IService;
 
/**
 * <p>
 * 城市实测小时气象数据表 服务类
 * </p>
 *
 * @author moral
 * @since 2021-12-23
 */
public interface CityWeatherService extends IService<CityWeather> {
 
}