IntelligentRecognition/ah-jjsp-service/.svn/pristine/2c/2cd6f796fe5c277e358f39aaa94...

137 lines
2.2 KiB
Plaintext
Raw Normal View History

2024-05-24 16:09:40 +08:00
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;
}
}