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
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_data_nong_geng
 */
@TableName(value = "air_data_nong_geng")
@Data
public class AirDataNongGeng implements Serializable {
    /**
     * 主键ID
     */
    @TableId(type = IdType.AUTO)
    private Long id;
 
    /**
     * 设备mac地址
     */
    private String mac;
 
    /**
     * 噪声
     */
    private String noise;
 
    /**
     * 硫化氢
     */
    private String hydrogenSulfide;
 
    /**
     * SO2 浓度
     */
    private String so2;
 
    /**
     * NO2 浓度
     */
    private String no2;
 
    /**
     * CO 浓度
     */
    private String co;
 
    /**
     * o3 浓度
     */
    private String o3;
 
    /**
     * pm2.5 浓度
     */
    private String pm2point5;
 
    /**
     * pm10
     */
    private String pm10;
 
    /**
     * 空气温度
     */
    private String airTemperature;
 
    /**
     * 空气湿度
     */
    private String airHumidity;
 
    /**
     * 大气压强
     */
    private String airPressure;
 
    /**
     * 风向
     */
    private String windDirection;
 
    /**
     * 风速
     */
    private String windSpeed;
 
    /**
     * 十分钟雨量
     */
    private String tenRainfallMin;
 
    /**
     * 辐射
     */
    private String radiation;
 
    /**
     * 光照
     */
    private String illumination;
 
    /**
     * 紫外线
     */
    private String ultraviolet;
 
    /**
     * co2 二氧化碳
     */
    private String co2;
 
    /**
     * 氧气
     */
    private String o2;
 
    /**
     * 设备类型
     */
    @JsonIgnore
    private String type;
 
    /**
     * 创建时间
     */
    private LocalDateTime createTime;
 
    @TableField(exist = false)
    private static final long serialVersionUID = 1L;
}