| | |
| | | import io.swagger.annotations.ApiModel; |
| | | import io.swagger.annotations.ApiModelProperty; |
| | | |
| | | /** |
| | | * @author wMeng |
| | | * @ClassName YsshWeather |
| | | * @Description 天气数据 |
| | | * @date 2022/10/30 13:18 |
| | | * @Version 1.0 |
| | | */ |
| | | @Data |
| | | @ApiModel(value = "天气数据",description = "天气数据") |
| | | public class Weather { |
| | |
| | | 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; |
| | | } |
| | | } |