forked from pvqcyimsk/gitproject
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
79 lines
1.6 KiB
79 lines
1.6 KiB
package com.example.myapplication.weather;
|
|
|
|
import java.io.Serializable;
|
|
|
|
public class WeatherItem implements Serializable {
|
|
private String data; //天气日期
|
|
private String max_temp; //最高温度
|
|
private String min_temp; //最低温度
|
|
private String text; //天气描述
|
|
private String humidity; //适度
|
|
private String pressure; //气压
|
|
private String wind; //风力
|
|
private String icon; //图标
|
|
|
|
public String getIcon() {
|
|
return icon;
|
|
}
|
|
|
|
public void setIcon(String icon) {
|
|
this.icon = icon;
|
|
}
|
|
|
|
public String getData() {
|
|
return data;
|
|
}
|
|
|
|
public void setData(String data) {
|
|
this.data = data;
|
|
}
|
|
|
|
public String getMax_temp() {
|
|
return max_temp;
|
|
}
|
|
|
|
public void setMax_temp(String max_temp) {
|
|
this.max_temp = max_temp;
|
|
}
|
|
|
|
public String getMin_temp() {
|
|
return min_temp;
|
|
}
|
|
|
|
public void setMin_temp(String min_temp) {
|
|
this.min_temp = min_temp;
|
|
}
|
|
|
|
public String getText() {
|
|
return text;
|
|
}
|
|
|
|
public void setText(String text) {
|
|
this.text = text;
|
|
}
|
|
|
|
public String getHumidity() {
|
|
return humidity;
|
|
}
|
|
|
|
public void setHumidity(String humidity) {
|
|
this.humidity = humidity;
|
|
}
|
|
|
|
public String getPressure() {
|
|
return pressure;
|
|
}
|
|
|
|
public void setPressure(String pressure) {
|
|
this.pressure = pressure;
|
|
}
|
|
|
|
public String getWind() {
|
|
return wind;
|
|
}
|
|
|
|
public void setWind(String wind) {
|
|
this.wind = wind;
|
|
}
|
|
}
|