package fr.zng.xxzx.common.dao;

import java.util.List;

import org.apache.ibatis.session.SqlSession;



public interface CityWeatherDao {
   
public SqlSession getSession();
    
	public List<String> getCityWeather();
}
