From 1d1b21f7f9416dc6a350dc83506364bb822e9e1c Mon Sep 17 00:00:00 2001 From: 13693261870 <252740454@qq.com> Date: 星期四, 27 四月 2023 13:50:08 +0800 Subject: [PATCH] 1 --- src/main/java/com/yssh/entity/Weather.java | 40 ++++++++++++++++++++++++++++++++++++++++ 1 files changed, 40 insertions(+), 0 deletions(-) diff --git a/src/main/java/com/yssh/entity/Weather.java b/src/main/java/com/yssh/entity/Weather.java index cf677f3..f433771 100644 --- a/src/main/java/com/yssh/entity/Weather.java +++ b/src/main/java/com/yssh/entity/Weather.java @@ -26,4 +26,44 @@ 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; + } } -- Gitblit v1.9.3