package com.moral.mapper; import java.util.List; import java.util.Map; public interface RealWeatherMapper { int insertRealWeather(List> list); void deleteRealWeather(String time); List> getTempAndCloud(Map params); Map getDayData(Map params); Map getTimeMaxTemp(Map params); Map getTimeMinTemp(Map params); List> getWeatherByHour(Map params); }