package com.yssh.entity;
|
|
import lombok.Data;
|
import io.swagger.annotations.ApiModel;
|
import io.swagger.annotations.ApiModelProperty;
|
|
@Data
|
@ApiModel(value = "天气数据",description = "天气数据")
|
public class Weather {
|
@ApiModelProperty(value = "主键")
|
private int id;
|
@ApiModelProperty(value = "时间")
|
private String time;
|
@ApiModelProperty(value = "风速")
|
private String windSpeed;
|
@ApiModelProperty(value = "风向")
|
private String windDirection;
|
@ApiModelProperty(value = "天气状况")
|
private String weatherCondition;
|
@ApiModelProperty(value = "气温")
|
private String temperature;
|
|
public String getTime() {
|
return time;
|
}
|
|
public void setTime(String time) {
|
this.time = time;
|
}
|
|
public String getWindSpeed() {
|
return windSpeed;
|
}
|
|
public void setWindSpeed(String windSpeed) {
|
this.windSpeed = windSpeed;
|
}
|
|
public String getWindDirection() {
|
return windDirection;
|
}
|
|
public void setWindDirection(String windDirection) {
|
this.windDirection = windDirection;
|
}
|
|
public String getWeatherCondition() {
|
return weatherCondition;
|
}
|
|
public void setWeatherCondition(String weatherCondition) {
|
this.weatherCondition = weatherCondition;
|
}
|
|
public String getTemperature() {
|
return temperature;
|
}
|
|
public void setTemperature(String temperature) {
|
this.temperature = temperature;
|
}
|
}
|