package com.moral.monitor.entity; /** * Created by a on 2017/7/7. */ public class Critical { private int id; private String sensor; 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; public int getId() { return id; } public void setId(int id) { this.id = id; } public String getSensor() { return sensor; } public void setSensor(String sensor) { this.sensor = sensor; } 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; } }