package com.moral.monitor.entity;
|
|
import java.util.Date;
|
|
/**设备表
|
* Created by a on 2017/4/10.
|
*/
|
public class Equipment {
|
private int id;
|
private String name;
|
private String address;
|
private double longitude;
|
private double latitude;
|
private String mac;
|
private String province;
|
private String city;
|
private String area;
|
private int state;
|
private Date time;
|
private String installer;
|
private String repairman;
|
private String fei;
|
private String statedesc;
|
|
|
|
public int getId() {
|
return id;
|
}
|
|
public void setId(int id) {
|
this.id = id;
|
}
|
|
public String getName() {
|
return name;
|
}
|
|
public void setName(String name) {
|
this.name = name;
|
}
|
|
public String getAddress() {
|
return address;
|
}
|
|
public void setAddress(String address) {
|
this.address = address;
|
}
|
|
public double getLongitude() {
|
return longitude;
|
}
|
|
public void setLongitude(double longitude) {
|
this.longitude = longitude;
|
}
|
|
public double getLatitude() {
|
return latitude;
|
}
|
|
public void setLatitude(double latitude) {
|
this.latitude = latitude;
|
}
|
|
public String getMac() {
|
return mac;
|
}
|
|
public void setMac(String mac) {
|
this.mac = mac;
|
}
|
|
public int getState() {
|
return state;
|
}
|
|
public void setState(int state) {
|
this.state = state;
|
}
|
|
public Date getTime() {
|
return time;
|
}
|
|
public void setTime(Date time) {
|
this.time = time;
|
}
|
|
public String getInstaller() {
|
return installer;
|
}
|
|
public void setInstaller(String installer) {
|
this.installer = installer;
|
}
|
|
public String getRepairman() {
|
return repairman;
|
}
|
|
public void setRepairman(String repairman) {
|
this.repairman = repairman;
|
}
|
|
public String getFei() {
|
return fei;
|
}
|
|
public void setFei(String fei) {
|
this.fei = fei;
|
}
|
|
public String getStatedesc() {
|
return statedesc;
|
}
|
|
public void setStatedesc(String statedesc) {
|
this.statedesc = statedesc;
|
}
|
|
public String getProvince() {
|
return province;
|
}
|
|
public void setProvince(String province) {
|
this.province = province;
|
}
|
|
public String getCity() {
|
return city;
|
}
|
|
public void setCity(String city) {
|
this.city = city;
|
}
|
|
public String getArea() {
|
return area;
|
}
|
|
public void setArea(String area) {
|
this.area = area;
|
}
|
}
|