2021与蓝度共同重构项目,服务端
zhanzhiqin
2021-12-16 2024e35174cdf3f521ba3c19d8567c50af2d37fe
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
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
package com.sandu.ximon.dao.domain;
 
import com.baomidou.mybatisplus.annotation.IdType;
import com.baomidou.mybatisplus.annotation.TableField;
import com.baomidou.mybatisplus.annotation.TableId;
import com.baomidou.mybatisplus.annotation.TableName;
import java.io.Serializable;
import java.time.LocalDateTime;
import lombok.Data;
 
/**
 * 
 * @TableName air_data
 */
@TableName(value ="air_data")
@Data
public class AirData implements Serializable {
    /**
     * 
     */
    @TableId(type = IdType.AUTO)
    private Long id;
 
    /**
     * 设备mac
     */
    private String deviceMac;
 
    /**
     * 设备型号
     */
    private String deviceType;
 
    /**
     * 模块预热状态标志
     */
    private String moduleWarmUpStatusFlag;
 
    /**
     * 温度值
     */
    private Double temperature;
 
    /**
     * 湿度值
     */
    private Double humidity;
 
    /**
     * 风速
     */
    private Double windSpeed;
 
    /**
     * 风向
     */
    private Double windDirection;
 
    /**
     * 大气压
     */
    private Integer pressure;
 
    /**
     * 光强
     */
    private Integer lightIntensity;
 
    /**
     * 噪音
     */
    private Integer noise;
 
    /**
     * PM2.5
     */
    private Integer pm25;
 
    /**
     *  PM10
     */
    private Integer pm10;
 
    /**
     * 总悬浮颗粒物(TSP)
     */
    private Integer tsp;
 
    /**
     * SO2二氧化硫相对值
     */
    private Integer so2;
 
    /**
     * 甲醛相对值
     */
    private Integer ech2o;
 
    /**
     * NO2二氧化氮
     */
    private Integer no2;
 
    /**
     * TVOC
     */
    private Integer tvoc;
 
    /**
     * CO一氧化碳
     */
    private Integer co;
 
    /**
     * 二氧化碳
     */
    private Integer co2;
 
    /**
     * O3臭氧
     */
    private Integer o3;
 
    /**
     * F氟化物
     */
    private Integer fluoride;
 
    /**
     * 
     */
    private LocalDateTime createTime;
 
    /**
     * 
     */
    private LocalDateTime updateTime;
 
    @TableField(exist = false)
    private static final long serialVersionUID = 1L;
}