|
|
@ -2,6 +2,8 @@ package com.cuit.solarenergy.entity;
|
|
|
|
|
|
|
|
|
|
|
|
import java.io.Serializable;
|
|
|
|
import java.io.Serializable;
|
|
|
|
import java.time.LocalDateTime;
|
|
|
|
import java.time.LocalDateTime;
|
|
|
|
|
|
|
|
import java.util.Date;
|
|
|
|
|
|
|
|
|
|
|
|
import lombok.Data;
|
|
|
|
import lombok.Data;
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
/**
|
|
|
@ -53,12 +55,130 @@ public class TGeoserverinfo implements Serializable {
|
|
|
|
/**
|
|
|
|
/**
|
|
|
|
* 数据生成时间(自动生成)
|
|
|
|
* 数据生成时间(自动生成)
|
|
|
|
*/
|
|
|
|
*/
|
|
|
|
private LocalDateTime createdate;
|
|
|
|
private Date createdate;
|
|
|
|
|
|
|
|
|
|
|
|
private String regionname;
|
|
|
|
private String regionname;
|
|
|
|
|
|
|
|
|
|
|
|
private static final long serialVersionUID = 1L;
|
|
|
|
private static final long serialVersionUID = 1L;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
|
|
|
* 序列号,通过序列取
|
|
|
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
public Long getId() {
|
|
|
|
|
|
|
|
return id;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
|
|
|
* 序列号,通过序列取
|
|
|
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
public void setId(Long id) {
|
|
|
|
|
|
|
|
this.id = id;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
|
|
|
* GeoServer服务工作区(访问地址)
|
|
|
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
public String getGeoserverworkspaces() {
|
|
|
|
|
|
|
|
return geoserverworkspaces;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
|
|
|
* GeoServer服务工作区(访问地址)
|
|
|
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
public void setGeoserverworkspaces(String geoserverworkspaces) {
|
|
|
|
|
|
|
|
this.geoserverworkspaces = geoserverworkspaces;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
|
|
|
* GeoServer服务图层名
|
|
|
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
public String getGeoserverlayers() {
|
|
|
|
|
|
|
|
return geoserverlayers;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
|
|
|
* GeoServer服务图层名
|
|
|
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
public void setGeoserverlayers(String geoserverlayers) {
|
|
|
|
|
|
|
|
this.geoserverlayers = geoserverlayers;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
|
|
|
* GeoServer服务样式名
|
|
|
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
public String getGeoserverstyles() {
|
|
|
|
|
|
|
|
return geoserverstyles;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
|
|
|
* GeoServer服务样式名
|
|
|
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
public void setGeoserverstyles(String geoserverstyles) {
|
|
|
|
|
|
|
|
this.geoserverstyles = geoserverstyles;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
|
|
|
* 坐标
|
|
|
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
public String getSrs() {
|
|
|
|
|
|
|
|
return srs;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
|
|
|
* 坐标
|
|
|
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
public void setSrs(String srs) {
|
|
|
|
|
|
|
|
this.srs = srs;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
|
|
|
* 边框
|
|
|
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
public String getBbox() {
|
|
|
|
|
|
|
|
return bbox;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
|
|
|
* 边框
|
|
|
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
public void setBbox(String bbox) {
|
|
|
|
|
|
|
|
this.bbox = bbox;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
|
|
|
* 地址(自动生成)
|
|
|
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
public String getUrl() {
|
|
|
|
|
|
|
|
return url;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
|
|
|
* 地址(自动生成)
|
|
|
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
public void setUrl(String url) {
|
|
|
|
|
|
|
|
this.url = url;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
|
|
|
* 数据生成时间(自动生成)
|
|
|
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
public Date getCreatedate() {
|
|
|
|
|
|
|
|
return createdate;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
public String getLatlonbbox() {
|
|
|
|
|
|
|
|
return latlonbbox;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
public void setLatlonbbox(String latlonbbox) {
|
|
|
|
|
|
|
|
this.latlonbbox = latlonbbox;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
|
|
|
* 数据生成时间(自动生成)
|
|
|
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
public void setCreatedate(Date createdate) {
|
|
|
|
|
|
|
|
this.createdate = createdate;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
@Override
|
|
|
|
@Override
|
|
|
|
public boolean equals(Object that) {
|
|
|
|
public boolean equals(Object that) {
|
|
|
|
if (this == that) {
|
|
|
|
if (this == that) {
|
|
|
@ -70,14 +190,13 @@ public class TGeoserverinfo implements Serializable {
|
|
|
|
if (getClass() != that.getClass()) {
|
|
|
|
if (getClass() != that.getClass()) {
|
|
|
|
return false;
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
TGeoserverinfo other = (TGeoserverinfo) that;
|
|
|
|
Geoserverinfo other = (Geoserverinfo) that;
|
|
|
|
return (this.getId() == null ? other.getId() == null : this.getId().equals(other.getId()))
|
|
|
|
return (this.getId() == null ? other.getId() == null : this.getId().equals(other.getId()))
|
|
|
|
&& (this.getGeoserverworkspaces() == null ? other.getGeoserverworkspaces() == null : this.getGeoserverworkspaces().equals(other.getGeoserverworkspaces()))
|
|
|
|
&& (this.getGeoserverworkspaces() == null ? other.getGeoserverworkspaces() == null : this.getGeoserverworkspaces().equals(other.getGeoserverworkspaces()))
|
|
|
|
&& (this.getGeoserverlayers() == null ? other.getGeoserverlayers() == null : this.getGeoserverlayers().equals(other.getGeoserverlayers()))
|
|
|
|
&& (this.getGeoserverlayers() == null ? other.getGeoserverlayers() == null : this.getGeoserverlayers().equals(other.getGeoserverlayers()))
|
|
|
|
&& (this.getGeoserverstyles() == null ? other.getGeoserverstyles() == null : this.getGeoserverstyles().equals(other.getGeoserverstyles()))
|
|
|
|
&& (this.getGeoserverstyles() == null ? other.getGeoserverstyles() == null : this.getGeoserverstyles().equals(other.getGeoserverstyles()))
|
|
|
|
&& (this.getSrs() == null ? other.getSrs() == null : this.getSrs().equals(other.getSrs()))
|
|
|
|
&& (this.getSrs() == null ? other.getSrs() == null : this.getSrs().equals(other.getSrs()))
|
|
|
|
&& (this.getBbox() == null ? other.getBbox() == null : this.getBbox().equals(other.getBbox()))
|
|
|
|
&& (this.getBbox() == null ? other.getBbox() == null : this.getBbox().equals(other.getBbox()))
|
|
|
|
&& (this.getLatlonbbox() == null ? other.getLatlonbbox() == null : this.getLatlonbbox().equals(other.getLatlonbbox()))
|
|
|
|
|
|
|
|
&& (this.getUrl() == null ? other.getUrl() == null : this.getUrl().equals(other.getUrl()))
|
|
|
|
&& (this.getUrl() == null ? other.getUrl() == null : this.getUrl().equals(other.getUrl()))
|
|
|
|
&& (this.getCreatedate() == null ? other.getCreatedate() == null : this.getCreatedate().equals(other.getCreatedate()));
|
|
|
|
&& (this.getCreatedate() == null ? other.getCreatedate() == null : this.getCreatedate().equals(other.getCreatedate()));
|
|
|
|
}
|
|
|
|
}
|
|
|
@ -92,7 +211,6 @@ public class TGeoserverinfo implements Serializable {
|
|
|
|
result = prime * result + ((getGeoserverstyles() == null) ? 0 : getGeoserverstyles().hashCode());
|
|
|
|
result = prime * result + ((getGeoserverstyles() == null) ? 0 : getGeoserverstyles().hashCode());
|
|
|
|
result = prime * result + ((getSrs() == null) ? 0 : getSrs().hashCode());
|
|
|
|
result = prime * result + ((getSrs() == null) ? 0 : getSrs().hashCode());
|
|
|
|
result = prime * result + ((getBbox() == null) ? 0 : getBbox().hashCode());
|
|
|
|
result = prime * result + ((getBbox() == null) ? 0 : getBbox().hashCode());
|
|
|
|
result = prime * result + ((getLatlonbbox() == null) ? 0 : getLatlonbbox().hashCode());
|
|
|
|
|
|
|
|
result = prime * result + ((getUrl() == null) ? 0 : getUrl().hashCode());
|
|
|
|
result = prime * result + ((getUrl() == null) ? 0 : getUrl().hashCode());
|
|
|
|
result = prime * result + ((getCreatedate() == null) ? 0 : getCreatedate().hashCode());
|
|
|
|
result = prime * result + ((getCreatedate() == null) ? 0 : getCreatedate().hashCode());
|
|
|
|
return result;
|
|
|
|
return result;
|
|
|
@ -110,7 +228,6 @@ public class TGeoserverinfo implements Serializable {
|
|
|
|
sb.append(", geoserverstyles=").append(geoserverstyles);
|
|
|
|
sb.append(", geoserverstyles=").append(geoserverstyles);
|
|
|
|
sb.append(", srs=").append(srs);
|
|
|
|
sb.append(", srs=").append(srs);
|
|
|
|
sb.append(", bbox=").append(bbox);
|
|
|
|
sb.append(", bbox=").append(bbox);
|
|
|
|
sb.append(", latlonbbox=").append(latlonbbox);
|
|
|
|
|
|
|
|
sb.append(", url=").append(url);
|
|
|
|
sb.append(", url=").append(url);
|
|
|
|
sb.append(", createdate=").append(createdate);
|
|
|
|
sb.append(", createdate=").append(createdate);
|
|
|
|
sb.append(", serialVersionUID=").append(serialVersionUID);
|
|
|
|
sb.append(", serialVersionUID=").append(serialVersionUID);
|
|
|
|