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 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;
|
|
/**
|
* voc挥发性有机物
|
*/
|
private String voc;
|
|
/**
|
* SO2 浓度
|
*/
|
private String so2;
|
|
/**
|
* NO2 浓度
|
*/
|
private String no2;
|
|
/**
|
* CO 浓度
|
*/
|
private String co;
|
|
/**
|
* 二氧化碳
|
*/
|
private String co2;
|
|
/**
|
* 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 rainfall;
|
|
/**
|
* 翻斗雨量
|
*/
|
private String tippingBucketRainfall;
|
|
/**
|
* 光照
|
*/
|
private String illumination;
|
|
/**
|
* 热电总辐射
|
*/
|
private String thermalRadiation;
|
|
/**
|
* 紫外线
|
*/
|
private String ultravioletRay;
|
|
/**
|
* 设备类型 AirNongGengEnums
|
*/
|
private String type;
|
|
/**
|
* 创建时间
|
*/
|
private LocalDateTime createTime;
|
|
@TableField(exist = false)
|
private static final long serialVersionUID = 1L;
|
}
|