You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

102 lines
2.4 KiB

12 months ago
//
// Decompiled by Procyon v0.5.36
//
package com.zgx.iot.dto.radar;
import java.beans.ConstructorProperties;
/**
* 雷达状态数据
*/
public class RadarStateModel
{
private int radarId;
private long timestamp;
private char workState;
private char sendState;
private float temperature;
private float longitude;
private float latitude;
private float altitude;
public void setRadarId(final int radarId) {
this.radarId = radarId;
}
public void setTimestamp(final long timestamp) {
this.timestamp = timestamp;
}
public void setWorkState(final char workState) {
this.workState = workState;
}
public void setSendState(final char sendState) {
this.sendState = sendState;
}
public void setTemperature(final float temperature) {
this.temperature = temperature;
}
public void setLongitude(final float longitude) {
this.longitude = longitude;
}
public void setLatitude(final float latitude) {
this.latitude = latitude;
}
public void setAltitude(final float altitude) {
this.altitude = altitude;
}
public int getRadarId() {
return this.radarId;
}
public long getTimestamp() {
return this.timestamp;
}
public char getWorkState() {
return this.workState;
}
public char getSendState() {
return this.sendState;
}
public float getTemperature() {
return this.temperature;
}
public float getLongitude() {
return this.longitude;
}
public float getLatitude() {
return this.latitude;
}
public float getAltitude() {
return this.altitude;
}
public RadarStateModel() {
}
@ConstructorProperties({ "radarId", "timestamp", "workState", "sendState", "temperature", "longitude", "latitude", "altitude" })
public RadarStateModel(final int radarId, final long timestamp, final char workState, final char sendState, final float temperature, final float longitude, final float latitude, final float altitude) {
this.radarId = radarId;
this.timestamp = timestamp;
this.workState = workState;
this.sendState = sendState;
this.temperature = temperature;
this.longitude = longitude;
this.latitude = latitude;
this.altitude = altitude;
}
}