package com.moral.screen.model;
|
|
/**
|
* Created by hjzhang on 2018/7/4.
|
*/
|
|
public class DeviceBean {
|
private int id;
|
private String name;
|
private String address;
|
private double longitude;
|
private double latitude;
|
private String mac;
|
private int operateUserId;
|
private String state;
|
private long createTime;
|
private String installTime;
|
private int monitorPointId;
|
private int deviceVersionId;
|
private String isDelete;
|
private int professionId;
|
private String device_name;
|
|
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 getOperateUserId() {
|
return operateUserId;
|
}
|
|
public void setOperateUserId(int operateUserId) {
|
this.operateUserId = operateUserId;
|
}
|
|
public String getState() {
|
return state;
|
}
|
|
public void setState(String state) {
|
this.state = state;
|
}
|
|
public long getCreateTime() {
|
return createTime;
|
}
|
|
public void setCreateTime(long createTime) {
|
this.createTime = createTime;
|
}
|
|
public String getInstallTime() {
|
return installTime;
|
}
|
|
public void setInstallTime(String installTime) {
|
this.installTime = installTime;
|
}
|
|
public int getMonitorPointId() {
|
return monitorPointId;
|
}
|
|
public void setMonitorPointId(int monitorPointId) {
|
this.monitorPointId = monitorPointId;
|
}
|
|
public int getDeviceVersionId() {
|
return deviceVersionId;
|
}
|
|
public void setDeviceVersionId(int deviceVersionId) {
|
this.deviceVersionId = deviceVersionId;
|
}
|
|
public String getIsDelete() {
|
return isDelete;
|
}
|
|
public void setIsDelete(String isDelete) {
|
this.isDelete = isDelete;
|
}
|
|
public int getProfessionId() {
|
return professionId;
|
}
|
|
public void setProfessionId(int professionId) {
|
this.professionId = professionId;
|
}
|
|
public String getDevice_name() {
|
return device_name;
|
}
|
|
public void setDevice_name(String device_name) {
|
this.device_name = device_name;
|
}
|
}
|