package suda.sudamodweather.dao.greendao;
// THIS CODE IS GENERATED BY greenDAO, DO NOT EDIT. Enable "keep" sections if you want to edit.
/**
* Entity mapped to table "HOUR_FORE_CAST".
*/
public class HourForeCast {
private String areaid;
private String hour;
private String weatherCondition;
private Integer temp;
public HourForeCast() {
}
public HourForeCast(String areaid, String hour, String weatherCondition, Integer temp) {
this.areaid = areaid;
this.hour = hour;
this.weatherCondition = weatherCondition;
this.temp = temp;
}
public String getAreaid() {
return areaid;
}
public void setAreaid(String areaid) {
this.areaid = areaid;
}
public String getHour() {
return hour;
}
public void setHour(String hour) {
this.hour = hour;
}
public String getWeatherCondition() {
return weatherCondition;
}
public void setWeatherCondition(String weatherCondition) {
this.weatherCondition = weatherCondition;
}
public Integer getTemp() {
return temp;
}
public void setTemp(Integer temp) {
this.temp = temp;
}
}