13693261870
2025-07-02 6708810c4de34dfb9513061432d656f91d56ee3a
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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
package com.ruoyi.fuzhou.domain;
 
import com.baomidou.mybatisplus.annotation.*;
 
import io.swagger.v3.oas.annotations.media.Schema;
 
 
import java.math.BigInteger;
import java.util.Date;
 
/**
 * <p>
 * 气象设备实时数据
 * </p>
 *
 * @author sunjiawei
 * @since 2025-05-20
 */
 
@TableName("RECEIVE_WEATHER_VALUE")
@Schema( description = "气象设备实时数据")
public class ReceiveWeatherValue {
 
    @Schema(title ="主键")
    @TableId(value = "ID", type = IdType.ASSIGN_ID)
    private BigInteger id;
 
    @Schema(title ="风速")
    @TableField("WIND_SPEED")
    private String windSpeed;
 
    @Schema(title ="风向")
    @TableField("WIND_DIRECTION")
    private String windDirection;
 
    @Schema(title ="温度")
    @TableField("TEMP")
    private String temp;
 
    @Schema(title ="湿度")
    @TableField("HUMIDITY")
    private String humidity;
 
    @Schema(title ="大气压")
    @TableField("ATMOSPHERIC_PRESSURE")
    private String atmosphericPressure;
 
    @Schema(title ="入库时间")
    @TableField(value = "CREATE_TIME", fill = FieldFill.INSERT)
    private Date createTime;
 
    @Schema(title ="设备名称")
    @TableField("DEVICE_NAME")
    private String deviceName;
 
    public String getDeviceName() {
        return deviceName;
    }
 
    public void setDeviceName(String deviceName) {
        this.deviceName = deviceName;
    }
 
    public Date getCreateTime() {
        return createTime;
    }
 
    public void setCreateTime(Date createTime) {
        this.createTime = createTime;
    }
 
    public BigInteger getId() {
        return id;
    }
 
    public void setId(BigInteger id) {
        this.id = id;
    }
 
    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 getTemp() {
        return temp;
    }
 
    public void setTemp(String temp) {
        this.temp = temp;
    }
 
    public String getHumidity() {
        return humidity;
    }
 
    public void setHumidity(String humidity) {
        this.humidity = humidity;
    }
 
    public String getAtmosphericPressure() {
        return atmosphericPressure;
    }
 
    public void setAtmosphericPressure(String atmosphericPressure) {
        this.atmosphericPressure = atmosphericPressure;
    }
}