blob: d97d92ca4d306b53793f51afaf16d2cec6e3082b [file] [log] [blame]
package sample.pojo.service;
import sample.pojo.data.Weather;
public class WeatherService{
Weather weather;
public void setWeather(Weather weather){
this.weather = weather;
}
public Weather getWeather(){
return this.weather;
}
}