package com.moral.monitor.entity;
|
|
import java.util.Date;
|
|
public class HistoryEntity {
|
private Integer id;
|
|
private String mac;
|
|
private String sensor;
|
|
private String macKey;
|
|
private Double macValue;
|
|
private Date time;
|
|
public Integer getId() {
|
return id;
|
}
|
|
public void setId(Integer id) {
|
this.id = id;
|
}
|
|
public String getMac() {
|
return mac;
|
}
|
|
public void setMac(String mac) {
|
this.mac = mac;
|
}
|
|
public String getSensor() {
|
return sensor;
|
}
|
|
public void setSensor(String sensor) {
|
this.sensor = sensor;
|
}
|
|
public String getMacKey() {
|
return macKey;
|
}
|
|
public void setMacKey(String macKey) {
|
this.macKey = macKey;
|
}
|
|
public Double getMacValue() {
|
return macValue;
|
}
|
|
public void setMacValue(Double macValue) {
|
this.macValue = macValue;
|
}
|
|
public Date getTime() {
|
return time;
|
}
|
|
public void setTime(Date time) {
|
this.time = time;
|
}
|
}
|