package com.moral.screen.model;
|
|
/**
|
* Created by hjzhang on 2018/7/4.
|
*/
|
|
public class DeviceDataBean {
|
private String sensor_key;
|
private String unit;
|
private float upper;
|
private float lower;
|
private String name;
|
private String description;
|
private int id;
|
private String state;
|
private float value;
|
|
public String getSensor_key() {
|
return sensor_key;
|
}
|
|
public void setSensor_key(String sensor_key) {
|
this.sensor_key = sensor_key;
|
}
|
|
public String getUnit() {
|
return unit;
|
}
|
|
public void setUnit(String unit) {
|
this.unit = unit;
|
}
|
|
public float getUpper() {
|
return upper;
|
}
|
|
public void setUpper(float upper) {
|
this.upper = upper;
|
}
|
|
public float getLower() {
|
return lower;
|
}
|
|
public void setLower(float lower) {
|
this.lower = lower;
|
}
|
|
public String getName() {
|
return name;
|
}
|
|
public void setName(String name) {
|
this.name = name;
|
}
|
|
public String getDescription() {
|
return description;
|
}
|
|
public void setDescription(String description) {
|
this.description = description;
|
}
|
|
public int getId() {
|
return id;
|
}
|
|
public void setId(int id) {
|
this.id = id;
|
}
|
|
public String getState() {
|
return state;
|
}
|
|
public void setState(String state) {
|
this.state = state;
|
}
|
|
public float getValue() {
|
return value;
|
}
|
|
public void setValue(float value) {
|
this.value = value;
|
}
|
}
|