package com.landtool.lanbase.modules.res.entity;
|
|
|
public class Res_ExtThemeMap {
|
|
private Integer resourceid;
|
private String publishsoft;
|
private String layername;
|
private String portalguid;
|
private String legendurl;
|
private String sublayerset;
|
private Integer defaultlayerset;
|
private Double initxmin;
|
private Double initxmax;
|
private Double initymin;
|
private Double initymax;
|
private Double fullxmin;
|
private Double fullxmax;
|
private Double fullymin;
|
private Double fullymax;
|
private String type;
|
private String mapjson;
|
|
|
public Integer getResourceid() {
|
return resourceid;
|
}
|
|
public void setResourceid(Integer resourceid) {
|
this.resourceid = resourceid;
|
}
|
|
|
public String getPublishsoft() {
|
return publishsoft;
|
}
|
|
public void setPublishsoft(String publishsoft) {
|
this.publishsoft = publishsoft;
|
}
|
|
|
public String getLayername() {
|
return layername;
|
}
|
|
public void setLayername(String layername) {
|
this.layername = layername;
|
}
|
|
|
public String getPortalguid() {
|
return portalguid;
|
}
|
|
public void setPortalguid(String portalguid) {
|
this.portalguid = portalguid;
|
}
|
|
|
public String getLegendurl() {
|
return legendurl;
|
}
|
|
public void setLegendurl(String legendurl) {
|
this.legendurl = legendurl;
|
}
|
|
|
public String getSublayerset() {
|
return sublayerset;
|
}
|
|
public void setSublayerset(String sublayerset) {
|
this.sublayerset = sublayerset;
|
}
|
|
|
public Integer getDefaultlayerset() {
|
return defaultlayerset;
|
}
|
|
public void setDefaultlayerset(Integer defaultlayerset) {
|
this.defaultlayerset = defaultlayerset;
|
}
|
|
|
public Double getInitxmin() {
|
return initxmin;
|
}
|
|
public void setInitxmin(Double initxmin) {
|
this.initxmin = initxmin;
|
}
|
|
|
public Double getInitxmax() {
|
return initxmax;
|
}
|
|
public void setInitxmax(Double initxmax) {
|
this.initxmax = initxmax;
|
}
|
|
|
public Double getInitymin() {
|
return initymin;
|
}
|
|
public void setInitymin(Double initymin) {
|
this.initymin = initymin;
|
}
|
|
|
public Double getInitymax() {
|
return initymax;
|
}
|
|
public void setInitymax(Double initymax) {
|
this.initymax = initymax;
|
}
|
|
|
public Double getFullxmin() {
|
return fullxmin;
|
}
|
|
public void setFullxmin(Double fullxmin) {
|
this.fullxmin = fullxmin;
|
}
|
|
|
public Double getFullxmax() {
|
return fullxmax;
|
}
|
|
public void setFullxmax(Double fullxmax) {
|
this.fullxmax = fullxmax;
|
}
|
|
|
public Double getFullymin() {
|
return fullymin;
|
}
|
|
public void setFullymin(Double fullymin) {
|
this.fullymin = fullymin;
|
}
|
|
|
public Double getFullymax() {
|
return fullymax;
|
}
|
|
public void setFullymax(Double fullymax) {
|
this.fullymax = fullymax;
|
}
|
|
|
public String getType() {
|
return type;
|
}
|
|
public void setType(String type) {
|
this.type = type;
|
}
|
|
|
public String getMapjson() {
|
return mapjson;
|
}
|
|
public void setMapjson(String mapjson) {
|
this.mapjson = mapjson;
|
}
|
|
}
|