2021与蓝度共同重构项目,服务端
liuhaonan
2022-10-21 0a30812acaa26ebe654340f7e749a6801b63b194
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
142
143
144
145
146
147
148
149
150
151
152
153
154
155
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 com.fasterxml.jackson.annotation.JsonIgnore;
import lombok.Data;
 
import java.io.Serializable;
import java.time.LocalDateTime;
 
/**
 * 大气设备
 *
 * @TableName air_equipment
 */
@TableName(value = "air_equipment")
@Data
public class AirEquipment implements Serializable {
    /**
     *
     */
    @TableId(type = IdType.AUTO)
    private Long id;
 
    /**
     * MAC地址灯杆
     */
    private String mac;
 
    /**
     * MAC地址大气
     */
    @JsonIgnore
    private String airMac;
 
    /**
     * 设备型号
     */
    private String deviceType;
 
    /**
     * 模块预热状态标志
     */
    private String moduleWarmUpStatusFlag;
 
    /**
     * 温度值
     */
    private Integer temperature;
 
    /**
     * 湿度值
     */
    private Integer humidity;
 
    /**
     * 风速
     */
    private Integer windSpeed;
 
    /**
     * 风向
     */
    private Integer windDirection;
 
    /**
     * 风力
     */
    private Integer windPower;
 
    /**
     * 大气压
     */
    private Integer pressure;
 
    /**
     * 光强
     */
    private Integer lightIntensity;
 
    /**
     * 噪音
     */
    private Integer noise;
 
    /**
     * pm25
     */
    private Integer pm25;
 
    /**
     * PM10
     */
    private Integer pm10;
 
    /**
     * 总悬浮颗粒物TSP
     */
    private Integer tsp;
 
    /**
     * 雨量
     */
    private Integer rain;
 
    /**
     * 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;
 
    @TableField(exist = false)
    private static final long serialVersionUID = 1L;
}