2
13693261870
2022-09-16 653761a31dfeb50dd3d007e892d69c90bf0cdafc
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
107
108
109
110
111
112
113
114
115
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;
        }
        
        
    
}