package com.moral.entity;
|
|
import java.util.Date;
|
|
public class Equipment {
|
|
private Integer id;
|
|
private String name;
|
|
private String address;
|
|
private Double longitude;
|
|
private Double latitude;
|
|
private String mac;
|
|
private Integer state;
|
|
private Date time;
|
|
private String installer;
|
|
private String repairman;
|
|
private String province;
|
|
private String city;
|
|
private String area;
|
|
private String monitorpoint;
|
|
private String ownerId;
|
|
public Integer getId() {
|
return id;
|
}
|
|
public void setId(Integer 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 Integer getState() {
|
return state;
|
}
|
|
public void setState(Integer 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 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;
|
}
|
|
public String getMonitorpoint() {
|
return monitorpoint;
|
}
|
|
public void setMonitorpoint(String monitorpoint) {
|
this.monitorpoint = monitorpoint;
|
}
|
|
public String getOwnerId() {
|
return ownerId;
|
}
|
|
public void setOwnerId(String ownerId) {
|
this.ownerId = ownerId;
|
}
|
}
|