package fr.zng.xxzx.common.dao;

import fr.zng.xxzx.common.entity.WeatherEntity;

/**
 * 天气预报
 * 
 * @author lyf
 *
 */
public interface WeatherDao {

	/**
	 * 插入
	 * 
	 * @param en
	 * @return result
	 */
	public int insert(WeatherEntity en);

	public WeatherEntity getWeather(String imei);

}
