package com.terra.proxymanager.controller;
|
|
import java.io.Serializable;
|
import java.util.List;
|
import java.util.Map;
|
|
import com.alibaba.excel.annotation.ExcelProperty;
|
|
public class GisService implements Serializable{
|
|
private String resourceid;
|
private String catalog;
|
private List<Map> layers;
|
public List<Map> getLayers() {
|
return layers;
|
}
|
public void setLayers(List<Map> layers) {
|
this.layers = layers;
|
}
|
//资源名称
|
@ExcelProperty(index=0)
|
private String title;
|
|
public String getCatalog() {
|
return catalog;
|
}
|
public void setCatalog(String catalog) {
|
this.catalog = catalog;
|
}
|
//服务地址
|
@ExcelProperty(index=1)
|
private String remark;
|
//代理后台服务地址
|
@ExcelProperty(index=2)
|
private String proxyUrl;
|
//资源类型
|
@ExcelProperty(index=3)
|
private String resourceclass;
|
//共享协议
|
@ExcelProperty(index=4)
|
private String sharprotocol;
|
//关键字
|
@ExcelProperty(index=5)
|
private String keywords;
|
//资源说明
|
@ExcelProperty(index=6)
|
private String description;
|
|
public String getResourceid() {
|
return resourceid;
|
}
|
public void setResourceid(String resourceid) {
|
this.resourceid = resourceid;
|
}
|
public String getTitle() {
|
return title;
|
}
|
public void setTitle(String title) {
|
this.title = title;
|
}
|
public String getRemark() {
|
return remark;
|
}
|
public void setRemark(String remark) {
|
this.remark = remark;
|
}
|
public String getProxyUrl() {
|
return proxyUrl;
|
}
|
public void setProxyUrl(String proxyUrl) {
|
this.proxyUrl = proxyUrl;
|
}
|
public String getResourceclass() {
|
return resourceclass;
|
}
|
public void setResourceclass(String resourceclass) {
|
this.resourceclass = resourceclass;
|
}
|
public String getSharprotocol() {
|
return sharprotocol;
|
}
|
public void setSharprotocol(String sharprotocol) {
|
this.sharprotocol = sharprotocol;
|
}
|
public String getKeywords() {
|
return keywords;
|
}
|
public void setKeywords(String keywords) {
|
this.keywords = keywords;
|
}
|
public String getDescription() {
|
return description;
|
}
|
public void setDescription(String description) {
|
this.description = description;
|
}
|
@Override
|
public String toString() {
|
return "GisService [resourceid=" + resourceid + ", title=" + title + ", remark=" + remark + ", proxyUrl="
|
+ proxyUrl + ", resourceclass=" + resourceclass + ", sharprotocol=" + sharprotocol + ", keywords="
|
+ keywords + ", description=" + description + "]";
|
}
|
|
|
|
}
|