From 58f51c889aecd7065a82b99d29b3ef4aee891ec1 Mon Sep 17 00:00:00 2001 From: 沈斌 <bluelazysb@hotmail.com> Date: Wed, 25 Oct 2017 16:31:19 +0800 Subject: [PATCH] Merge remote-tracking branch 'origin/master' --- src/main/java/com/moral/monitor/entity/Monitorpoint.java | 125 +++++++++++++++++++++++++++++++++++++++++ 1 files changed, 125 insertions(+), 0 deletions(-) diff --git a/src/main/java/com/moral/monitor/entity/Monitorpoint.java b/src/main/java/com/moral/monitor/entity/Monitorpoint.java new file mode 100644 index 0000000..1e0c672 --- /dev/null +++ b/src/main/java/com/moral/monitor/entity/Monitorpoint.java @@ -0,0 +1,125 @@ +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(); + } +} \ No newline at end of file -- Gitblit v1.8.0