128 lines
2.6 KiB
Plaintext
128 lines
2.6 KiB
Plaintext
|
|
package com.sercurityControl.proteam.domain;
|
||
|
|
|
||
|
|
import com.securityControl.common.core.web.domain.BaseEntity;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* 天气分布实体类
|
||
|
|
*/
|
||
|
|
public class WeatherMapData extends BaseEntity {
|
||
|
|
|
||
|
|
//(地市名称)
|
||
|
|
private String cictyName;
|
||
|
|
//(当前温度)
|
||
|
|
private String currentTemp;
|
||
|
|
//(今日温度)
|
||
|
|
private String dayTemp;
|
||
|
|
//(天气状况)
|
||
|
|
private String weatherStatus;
|
||
|
|
|
||
|
|
//预警内容
|
||
|
|
private String alertContent;
|
||
|
|
|
||
|
|
//时间日期
|
||
|
|
private String weatherDate;
|
||
|
|
|
||
|
|
private String hour;
|
||
|
|
|
||
|
|
//经度
|
||
|
|
private String lon;
|
||
|
|
|
||
|
|
//纬度
|
||
|
|
private String lat;
|
||
|
|
|
||
|
|
private String weather;
|
||
|
|
|
||
|
|
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;
|
||
|
|
}
|
||
|
|
|
||
|
|
public String getHour() {
|
||
|
|
return hour;
|
||
|
|
}
|
||
|
|
|
||
|
|
public void setHour(String hour) {
|
||
|
|
this.hour = hour;
|
||
|
|
}
|
||
|
|
|
||
|
|
public String getCictyName() {
|
||
|
|
return cictyName;
|
||
|
|
}
|
||
|
|
|
||
|
|
public void setCictyName(String cictyName) {
|
||
|
|
this.cictyName = cictyName;
|
||
|
|
}
|
||
|
|
|
||
|
|
public String getCurrentTemp() {
|
||
|
|
return currentTemp;
|
||
|
|
}
|
||
|
|
|
||
|
|
public void setCurrentTemp(String currentTemp) {
|
||
|
|
this.currentTemp = currentTemp;
|
||
|
|
}
|
||
|
|
|
||
|
|
public String getDayTemp() {
|
||
|
|
return dayTemp;
|
||
|
|
}
|
||
|
|
|
||
|
|
public void setDayTemp(String dayTemp) {
|
||
|
|
this.dayTemp = dayTemp;
|
||
|
|
}
|
||
|
|
|
||
|
|
public String getWeatherStatus() {
|
||
|
|
return weatherStatus;
|
||
|
|
}
|
||
|
|
|
||
|
|
public void setWeatherStatus(String weatherStatus) {
|
||
|
|
this.weatherStatus = weatherStatus;
|
||
|
|
}
|
||
|
|
|
||
|
|
public String getAlertContent() {
|
||
|
|
return alertContent;
|
||
|
|
}
|
||
|
|
|
||
|
|
public void setAlertContent(String alertContent) {
|
||
|
|
this.alertContent = alertContent;
|
||
|
|
}
|
||
|
|
|
||
|
|
public String getWeatherDate() {
|
||
|
|
return weatherDate;
|
||
|
|
}
|
||
|
|
|
||
|
|
public void setWeatherDate(String weatherDate) {
|
||
|
|
this.weatherDate = weatherDate;
|
||
|
|
}
|
||
|
|
|
||
|
|
public String getWeather() {
|
||
|
|
return weather;
|
||
|
|
}
|
||
|
|
|
||
|
|
public void setWeather(String weather) {
|
||
|
|
this.weather = weather;
|
||
|
|
}
|
||
|
|
|
||
|
|
@Override
|
||
|
|
public String toString() {
|
||
|
|
return "WeatherMapData{" +
|
||
|
|
"cictyName='" + cictyName + '\'' +
|
||
|
|
", currentTemp='" + currentTemp + '\'' +
|
||
|
|
", dayTemp='" + dayTemp + '\'' +
|
||
|
|
", weatherStatus='" + weatherStatus + '\'' +
|
||
|
|
", alertContent='" + alertContent + '\'' +
|
||
|
|
", weatherDate='" + weatherDate + '\'' +
|
||
|
|
", hour='" + hour + '\'' +
|
||
|
|
'}';
|
||
|
|
}
|
||
|
|
}
|