¶Ô±ÈÐÂÎļþ |
| | |
| | | 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; |
| | | } |
| | | } |