package com.landtool.lanbase.modules.terra;
|
|
import java.io.Serializable;
|
import java.util.List;
|
import java.util.Map;
|
|
import com.alibaba.excel.annotation.ExcelIgnore;
|
import com.alibaba.excel.annotation.ExcelProperty;
|
|
public class GisService implements Serializable{
|
@ExcelIgnore
|
private String resourceid;
|
|
@ExcelIgnore
|
private Integer proxyid;
|
|
@ExcelProperty(index=12)
|
private String catalog;
|
|
//资源名称
|
@ExcelProperty(index=1)
|
private String title;
|
|
|
//服务地址
|
@ExcelProperty(index=7)
|
private String remark;
|
//代理后台服务地址
|
@ExcelProperty(index=8)
|
private String proxyUrl;
|
//资源类型
|
@ExcelProperty(index=11)
|
private String resourceclass;
|
//共享协议
|
@ExcelProperty(index=13)
|
private String sharprotocol;
|
//关键字
|
@ExcelProperty(index=9)
|
private String keywords;
|
//资源说明
|
@ExcelProperty(index=10)
|
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;
|
}
|
// private List<Map> layers;
|
// public List<Map> getLayers() {
|
// return layers;
|
// }
|
// public void setLayers(List<Map> layers) {
|
// this.layers = layers;
|
// }
|
|
public String getCatalog() {
|
return catalog;
|
}
|
public Integer getProxyid() {
|
return proxyid;
|
}
|
public void setProxyid(Integer proxyid) {
|
this.proxyid = proxyid;
|
}
|
public void setCatalog(String catalog) {
|
this.catalog = catalog;
|
}
|
|
|
|
}
|