1
13693261870
2022-09-16 21ddee1a38257297288b88bc6c0476ec96a5f867
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
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 + "]";
        }
        
        
    
}