package com.moral.monitor.entity;
|
|
/**
|
* 此设备所有传感器报警相关信息
|
* Created by a on 2017/4/10.
|
*/
|
public class AlarmSensor {
|
private int id;
|
private String mac;
|
private String sensor;
|
private String alarm;
|
private String mac_key;
|
private double first;
|
private int first_notice;
|
private double second;
|
private int second_notice;
|
private double third;
|
private int third_notice;
|
private String units;
|
private int digit;
|
private Double inverse_first;
|
private Double inverse_second;
|
private Double inverse_third;
|
|
|
public int getId() {
|
return id;
|
}
|
public void setId(int 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 getAlarm() {
|
return alarm;
|
}
|
public void setAlarm(String alarm) {
|
this.alarm = alarm;
|
}
|
public String getMac_key() {
|
return mac_key;
|
}
|
public void setMac_key(String mac_key) {
|
this.mac_key = mac_key;
|
}
|
public double getFirst() {
|
return first;
|
}
|
public void setFirst(double first) {
|
this.first = first;
|
}
|
public int getFirst_notice() {
|
return first_notice;
|
}
|
public void setFirst_notice(int first_notice) {
|
this.first_notice = first_notice;
|
}
|
public double getSecond() {
|
return second;
|
}
|
public void setSecond(double second) {
|
this.second = second;
|
}
|
public int getSecond_notice() {
|
return second_notice;
|
}
|
public void setSecond_notice(int second_notice) {
|
this.second_notice = second_notice;
|
}
|
public double getThird() {
|
return third;
|
}
|
public void setThird(double third) {
|
this.third = third;
|
}
|
public int getThird_notice() {
|
return third_notice;
|
}
|
public void setThird_notice(int third_notice) {
|
this.third_notice = third_notice;
|
}
|
public String getUnits() {
|
return units;
|
}
|
public void setUnits(String units) {
|
this.units = units;
|
}
|
public int getDigit() {
|
return digit;
|
}
|
public void setDigit(int digit) {
|
this.digit = digit;
|
}
|
public Double getInverse_first() {
|
return inverse_first;
|
}
|
public void setInverse_first(Double inverse_first) {
|
this.inverse_first = inverse_first;
|
}
|
public Double getInverse_second() {
|
return inverse_second;
|
}
|
public void setInverse_second(Double inverse_second) {
|
this.inverse_second = inverse_second;
|
}
|
public Double getInverse_third() {
|
return inverse_third;
|
}
|
public void setInverse_third(Double inverse_third) {
|
this.inverse_third = inverse_third;
|
}
|
}
|