package com.ruoyi.fuzhou.domain;
|
|
import com.baomidou.mybatisplus.annotation.*;
|
|
import io.swagger.v3.oas.annotations.media.Schema;
|
|
|
import java.math.BigInteger;
|
import java.util.Date;
|
|
/**
|
* <p>
|
* 气象设备实时数据
|
* </p>
|
*
|
* @author sunjiawei
|
* @since 2025-05-23
|
*/
|
|
@TableName("RECEIVE_WEATHER_VALUE_FINAL")
|
@Schema( description = "气象设备实时数据")
|
public class ReceiveWeatherValueFinal {
|
@Schema(title ="主键")
|
@TableId(value = "ID", type = IdType.ASSIGN_ID)
|
private BigInteger id;
|
|
@Schema(title ="风速")
|
@TableField("WIND_SPEED")
|
private String windSpeed;
|
|
@Schema(title ="风向")
|
@TableField("WIND_DIRECTION")
|
private String windDirection;
|
|
@Schema(title ="温度")
|
@TableField("TEMP")
|
private String temp;
|
|
@Schema(title ="湿度")
|
@TableField("HUMIDITY")
|
private String humidity;
|
|
@Schema(title ="大气压")
|
@TableField("ATMOSPHERIC_PRESSURE")
|
private String atmosphericPressure;
|
|
@Schema(title ="入库时间")
|
@TableField(value = "CREATE_TIME", fill = FieldFill.INSERT)
|
private Date createTime;
|
|
@Schema(title ="设备名称")
|
@TableField("DEVICE_NAME")
|
private String deviceName;
|
|
public String getDeviceName() {
|
return deviceName;
|
}
|
|
public void setDeviceName(String deviceName) {
|
this.deviceName = deviceName;
|
}
|
|
public Date getCreateTime() {
|
return createTime;
|
}
|
|
public void setCreateTime(Date createTime) {
|
this.createTime = createTime;
|
}
|
|
public BigInteger getId() {
|
return id;
|
}
|
|
public void setId(BigInteger id) {
|
this.id = id;
|
}
|
|
public String getWindSpeed() {
|
return windSpeed;
|
}
|
|
public void setWindSpeed(String windSpeed) {
|
this.windSpeed = windSpeed;
|
}
|
|
public String getWindDirection() {
|
return windDirection;
|
}
|
|
public void setWindDirection(String windDirection) {
|
this.windDirection = windDirection;
|
}
|
|
public String getTemp() {
|
return temp;
|
}
|
|
public void setTemp(String temp) {
|
this.temp = temp;
|
}
|
|
public String getHumidity() {
|
return humidity;
|
}
|
|
public void setHumidity(String humidity) {
|
this.humidity = humidity;
|
}
|
|
public String getAtmosphericPressure() {
|
return atmosphericPressure;
|
}
|
|
public void setAtmosphericPressure(String atmosphericPressure) {
|
this.atmosphericPressure = atmosphericPressure;
|
}
|
|
}
|