137 lines
2.2 KiB
Plaintext
137 lines
2.2 KiB
Plaintext
|
|
package com.securityControl.task.domain.vo;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* 天气-实体类
|
||
|
|
*/
|
||
|
|
public class WeatherVo {
|
||
|
|
|
||
|
|
/**
|
||
|
|
* 城市名称
|
||
|
|
*/
|
||
|
|
private String name;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* 天气
|
||
|
|
*/
|
||
|
|
private String weather;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* 最高气温
|
||
|
|
*/
|
||
|
|
private String tempMax;
|
||
|
|
/**
|
||
|
|
* 最低气温
|
||
|
|
*/
|
||
|
|
private String tempMin;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* 实时温度
|
||
|
|
*/
|
||
|
|
private String realTimeTemp;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* 实时天气
|
||
|
|
*/
|
||
|
|
private String realTimeWeather;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* 小时
|
||
|
|
*/
|
||
|
|
private String hours;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* 创建时间
|
||
|
|
*/
|
||
|
|
private String createTime;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* 经度
|
||
|
|
*/
|
||
|
|
private String lon;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* 纬度
|
||
|
|
*/
|
||
|
|
private String lat;
|
||
|
|
|
||
|
|
public String getName() {
|
||
|
|
return name;
|
||
|
|
}
|
||
|
|
|
||
|
|
public void setName(String name) {
|
||
|
|
this.name = name;
|
||
|
|
}
|
||
|
|
|
||
|
|
public String getWeather() {
|
||
|
|
return weather;
|
||
|
|
}
|
||
|
|
|
||
|
|
public void setWeather(String weather) {
|
||
|
|
this.weather = weather;
|
||
|
|
}
|
||
|
|
|
||
|
|
public String getTempMax() {
|
||
|
|
return tempMax;
|
||
|
|
}
|
||
|
|
|
||
|
|
public void setTempMax(String tempMax) {
|
||
|
|
this.tempMax = tempMax;
|
||
|
|
}
|
||
|
|
|
||
|
|
public String getTempMin() {
|
||
|
|
return tempMin;
|
||
|
|
}
|
||
|
|
|
||
|
|
public void setTempMin(String tempMin) {
|
||
|
|
this.tempMin = tempMin;
|
||
|
|
}
|
||
|
|
|
||
|
|
public String getRealTimeTemp() {
|
||
|
|
return realTimeTemp;
|
||
|
|
}
|
||
|
|
|
||
|
|
public void setRealTimeTemp(String realTimeTemp) {
|
||
|
|
this.realTimeTemp = realTimeTemp;
|
||
|
|
}
|
||
|
|
|
||
|
|
public String getRealTimeWeather() {
|
||
|
|
return realTimeWeather;
|
||
|
|
}
|
||
|
|
|
||
|
|
public void setRealTimeWeather(String realTimeWeather) {
|
||
|
|
this.realTimeWeather = realTimeWeather;
|
||
|
|
}
|
||
|
|
|
||
|
|
public String getHours() {
|
||
|
|
return hours;
|
||
|
|
}
|
||
|
|
|
||
|
|
public void setHours(String hours) {
|
||
|
|
this.hours = hours;
|
||
|
|
}
|
||
|
|
|
||
|
|
public String getCreateTime() {
|
||
|
|
return createTime;
|
||
|
|
}
|
||
|
|
|
||
|
|
public void setCreateTime(String createTime) {
|
||
|
|
this.createTime = createTime;
|
||
|
|
}
|
||
|
|
|
||
|
|
public String getLon() {
|
||
|
|
return lon;
|
||
|
|
}
|
||
|
|
|
||
|
|
public void setLon(String lon) {
|
||
|
|
this.lon = lon;
|
||
|
|
}
|
||
|
|
|
||
|
|
public String getLat() {
|
||
|
|
return lat;
|
||
|
|
}
|
||
|
|
|
||
|
|
public void setLat(String lat) {
|
||
|
|
this.lat = lat;
|
||
|
|
}
|
||
|
|
}
|