jinpengyong
2023-09-22 48bd10b213992dd416620e338cf732ee972110de
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
package com.moral.api.service;
 
import com.moral.api.entity.CityWeather;
import com.baomidou.mybatisplus.extension.service.IService;
 
import java.util.Map;
 
/**
 * <p>
 * 城市实测小时气象数据表 服务类
 * </p>
 *
 * @author moral
 * @since 2021-10-28
 */
public interface CityWeatherService extends IService<CityWeather> {
    /**
    * @Description: 根据地区码查询天气
            * @Param: [regionCode]
            * @return: java.util.Map<java.lang.String,java.lang.Object>
            * @Author: 陈凯裕
            * @Date: 2021/10/29
            */
    Map<String,Object> queryWeatherByRegionCode(Integer regionCode);
    
    /**
      *@Description: 根据地区码和时间查询穿衣指数
      *@Param: [map]
      *@return: java.util.Map<java.lang.String,java.lang.Object> 
      *@Author: lizijie
      *@Date: 2022/4/15 17:00
     **/
    Map<String,Object> dressingIndex(Map map);
}