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.util.Date;
|
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 String temperature;
|
|
/**
|
* 湿度值
|
*/
|
private String humidity;
|
|
/**
|
* 风速
|
*/
|
private String windSpeed;
|
|
/**
|
* 风向
|
*/
|
private String windDirection;
|
|
/**
|
* 风力
|
*/
|
private String windPower;
|
|
/**
|
* 大气压
|
*/
|
private String pressure;
|
|
/**
|
* 光强
|
*/
|
private String lightIntensity;
|
|
/**
|
* 噪音
|
*/
|
private String noise;
|
|
/**
|
* PM2.5
|
*/
|
private String pm25;
|
|
/**
|
* PM10
|
*/
|
private String pm10;
|
|
/**
|
* 总悬浮颗粒物(TSP)
|
*/
|
private String tsp;
|
|
/**
|
* 雨量
|
*/
|
private String rain;
|
|
/**
|
* 甲醛相对值
|
*/
|
private String ech2o;
|
|
/**
|
* TVOC
|
*/
|
private String tvoc;
|
|
/**
|
* 二氧化碳
|
*/
|
private String co2;
|
|
/**
|
* SO2二氧化硫相对值
|
*/
|
private String so2;
|
|
/**
|
* NO2二氧化氮
|
*/
|
private String no2;
|
|
/**
|
* CO一氧化碳
|
*/
|
private String co;
|
|
/**
|
* O3臭氧
|
*/
|
private String o3;
|
|
/**
|
* F氟化物
|
*/
|
private String fluoride;
|
|
/**
|
*
|
*/
|
private Date createTime;
|
|
/**
|
*
|
*/
|
private Date updateTime;
|
|
@TableField(exist = false)
|
private static final long serialVersionUID = 1L;
|
}
|