package com.moral.monitor.entity;
|
|
import java.util.Date;
|
|
public class Monitorpoint {
|
private String id;
|
|
private String name;
|
|
private Double longitude;
|
|
private Double latitude;
|
|
private String provincecode;
|
|
private String citycode;
|
|
private String areacode;
|
|
private String address;
|
|
private String repairman;
|
|
private String regionDescription;
|
|
private Date createTime;
|
|
private String owner;
|
|
public String getId() {
|
return id;
|
}
|
|
public void setId(String id) {
|
this.id = id == null ? null : id.trim();
|
}
|
|
public String getName() {
|
return name;
|
}
|
|
public void setName(String name) {
|
this.name = name == null ? null : name.trim();
|
}
|
|
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 getProvincecode() {
|
return provincecode;
|
}
|
|
public void setProvincecode(String provincecode) {
|
this.provincecode = provincecode == null ? null : provincecode.trim();
|
}
|
|
public String getCitycode() {
|
return citycode;
|
}
|
|
public void setCitycode(String citycode) {
|
this.citycode = citycode == null ? null : citycode.trim();
|
}
|
|
public String getAreacode() {
|
return areacode;
|
}
|
|
public void setAreacode(String areacode) {
|
this.areacode = areacode == null ? null : areacode.trim();
|
}
|
|
public String getAddress() {
|
return address;
|
}
|
|
public void setAddress(String address) {
|
this.address = address == null ? null : address.trim();
|
}
|
|
public String getRepairman() {
|
return repairman;
|
}
|
|
public void setRepairman(String repairman) {
|
this.repairman = repairman == null ? null : repairman.trim();
|
}
|
|
public String getRegionDescription() {
|
return regionDescription;
|
}
|
|
public void setRegionDescription(String regionDescription) {
|
this.regionDescription = regionDescription == null ? null : regionDescription.trim();
|
}
|
|
public Date getCreateTime() {
|
return createTime;
|
}
|
|
public void setCreateTime(Date createTime) {
|
this.createTime = createTime;
|
}
|
|
public String getOwner() {
|
return owner;
|
}
|
|
public void setOwner(String owner) {
|
this.owner = owner == null ? null : owner.trim();
|
}
|
}
|