package com.liuguilin.lovewallpaper.model; import java.util.List; /* * 项目名: LoveWallpaper * 包名: com.liuguilin.lovewallpaper.model * 文件名: WeatherEveryDayApiModel * 创建者: LiuGuiLin * 创建时间: 2017/1/10 0010 下午 10:44 * 描述: 未来天气 */ public class WeatherEveryDayApiModel { private List<ResultsBean> results; public List<ResultsBean> getResults() { return results; } public void setResults(List<ResultsBean> results) { this.results = results; } public static class ResultsBean { private LocationBean location; private String last_update; private List<DailyBean> daily; public LocationBean getLocation() { return location; } public void setLocation(LocationBean location) { this.location = location; } public String getLast_update() { return last_update; } public void setLast_update(String last_update) { this.last_update = last_update; } public List<DailyBean> getDaily() { return daily; } public void setDaily(List<DailyBean> daily) { this.daily = daily; } public static class LocationBean { private String id; private String name; private String country; private String path; private String timezone; private String timezone_offset; public String getId() { return id; } public void setId(String id) { this.id = id; } public String getName() { return name; } public void setName(String name) { this.name = name; } public String getCountry() { return country; } public void setCountry(String country) { this.country = country; } public String getPath() { return path; } public void setPath(String path) { this.path = path; } public String getTimezone() { return timezone; } public void setTimezone(String timezone) { this.timezone = timezone; } public String getTimezone_offset() { return timezone_offset; } public void setTimezone_offset(String timezone_offset) { this.timezone_offset = timezone_offset; } } public static class DailyBean { private String date; private String text_day; private String code_day; private String text_night; private String code_night; private String high; private String low; private String precip; private String wind_direction; private String wind_direction_degree; private String wind_speed; private String wind_scale; public String getDate() { return date; } public void setDate(String date) { this.date = date; } public String getText_day() { return text_day; } public void setText_day(String text_day) { this.text_day = text_day; } public String getCode_day() { return code_day; } public void setCode_day(String code_day) { this.code_day = code_day; } public String getText_night() { return text_night; } public void setText_night(String text_night) { this.text_night = text_night; } public String getCode_night() { return code_night; } public void setCode_night(String code_night) { this.code_night = code_night; } public String getHigh() { return high; } public void setHigh(String high) { this.high = high; } public String getLow() { return low; } public void setLow(String low) { this.low = low; } public String getPrecip() { return precip; } public void setPrecip(String precip) { this.precip = precip; } public String getWind_direction() { return wind_direction; } public void setWind_direction(String wind_direction) { this.wind_direction = wind_direction; } public String getWind_direction_degree() { return wind_direction_degree; } public void setWind_direction_degree(String wind_direction_degree) { this.wind_direction_degree = wind_direction_degree; } public String getWind_speed() { return wind_speed; } public void setWind_speed(String wind_speed) { this.wind_speed = wind_speed; } public String getWind_scale() { return wind_scale; } public void setWind_scale(String wind_scale) { this.wind_scale = wind_scale; } } } }