燕山石化溯源三维电子沙盘-【后端】-服务
1
13693261870
2023-04-27 1d1b21f7f9416dc6a350dc83506364bb822e9e1c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
package com.yssh.entity;
 
import lombok.Data;
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 {
    @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;
    }
}