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
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
package com.landtool.lanbase.config;
 
import org.springframework.boot.context.properties.ConfigurationProperties;
import org.springframework.stereotype.Component;
 
/**
 * Created by Administrator on 2018/3/6.
 */
@Component
@ConfigurationProperties(prefix = "sys")
public class SysTemPropertyConfig {
    private String uploadPath;
    private long appId;                 //系统ID
    private String appFullName;         //系统名称
    private String apiServer;
    private String tokenWebRoot;        //token获取服务地址
    private String apptokenWebRoot;     //apptoken获取服务地址
    private String pubzyWebRoot;        //公共资源库地址
    private String loginUrl;            //cas登录url
    private String casHost;             //cas登录域名
    private String gisPortal;           //地图URL
    private String esbHost;             //Esb替换
    private String esbWebServiceHost;   //Esb替换
    private String esbUrl;
    private String srHost;                //泰瑞服务代理host
    private String srUrl;               //泰瑞服务代理url
    private String terraTokenWebRoot;
    private String obtainExtentMapUrl;  //框选地图底图URL
    private String uploadRootPath;
    private String uploadTemplatesPath; //模板上传路径
    private String videoUrl;
    private String ipHost;
    private String gisHost;
    private String proxyUrl;
    private String templateParamsURL;//出图模板参数自动获取服务地址
    private String ncFileConfigURL;//nc文件配置获取服务地址
    private String readNcFileURL;//解析nc文件生成json服务地址
    private String ncStorageUrl;//nc入库服务地址
    private String uploadRestemplateURL;//出图模板上传服务地址
    private String deleteRestemplateURL;//出图模板删除服务地址
    private int  sessionTimeOut=1800;// session 超时时间  单位秒 
    
    
    public String getTerraTokenWebRoot() {
        return terraTokenWebRoot;
    }
 
    public void setTerraTokenWebRoot(String terraTokenWebRoot) {
        this.terraTokenWebRoot = terraTokenWebRoot;
    }
 
    public String getSrHost() {
        return srHost;
    }
 
    public void setSrHost(String srHost) {
        this.srHost = srHost;
    }
 
    public String getSrUrl() {
        return srUrl;
    }
 
    public void setSrUrl(String srUrl) {
        this.srUrl = srUrl;
    }
 
    public int getSessionTimeOut() {
        return sessionTimeOut;
    }
 
    public void setSessionTimeOut(int sessionTimeOut) {
        this.sessionTimeOut = sessionTimeOut;
    }
    
    
    public String getPubzyWebRoot() {
        return pubzyWebRoot;
    }
 
    public void setPubzyWebRoot(String pubzyWebRoot) {
        this.pubzyWebRoot = pubzyWebRoot;
    }
 
    public String getTokenWebRoot() {
        return tokenWebRoot;
    }
 
    public void setTokenWebRoot(String tokenWebRoot) {
        this.tokenWebRoot = tokenWebRoot;
    }
 
    public long getAppId() {
        return appId;
    }
 
    public void setAppId(long appId) {
        this.appId = appId;
    }
 
    public String getAppFullName() {
        return appFullName;
    }
 
    public void setAppFullName(String appFullName) {
        this.appFullName = appFullName;
    }
 
    public String getApiServer() {
        return apiServer;
    }
 
    public void setApiServer(String apiServer) {
        this.apiServer = apiServer;
    }
 
    public String getUploadPath() {
        return uploadPath;
    }
 
    public void setUploadPath(String uploadPath) {
        this.uploadPath = uploadPath;
    }
 
    public String getLoginUrl() {
        return loginUrl;
    }
 
    public void setLoginUrl(String loginUrl) {
        this.loginUrl = loginUrl;
    }
 
    public String getCasHost() {
        return casHost;
    }
 
    public void setCasHost(String casHost) {
        this.casHost = casHost;
    }
 
    public String getGisPortal() {
        return gisPortal;
    }
 
    public void setGisPortal(String gisPortal) {
        this.gisPortal = gisPortal;
    }
 
    public String getEsbHost() {
        return esbHost;
    }
 
    public void setEsbHost(String esbHost) {
        this.esbHost = esbHost;
    }
 
    public String getEsbUrl() {
        return esbUrl;
    }
 
    public void setEsbUrl(String esbUrl) {
        this.esbUrl = esbUrl;
    }
 
    public String getObtainExtentMapUrl() {
        return obtainExtentMapUrl;
    }
 
    public void setObtainExtentMapUrl(String obtainExtentMapUrl) {
        this.obtainExtentMapUrl = obtainExtentMapUrl;
    }
    
    public String getUploadTemplatesPath() {
        return uploadTemplatesPath;
    }
 
    public void setUploadTemplatesPath(String uploadTemplatesPath) {
        this.uploadTemplatesPath = uploadTemplatesPath;
    }
 
    public String getUploadRootPath(){return uploadRootPath;}
 
    public void setUploadRootPath(String uploadRootPath){this.uploadRootPath=uploadRootPath;}
 
    public String getEsbWebServiceHost(){return  esbWebServiceHost;}
 
    public void setEsbWebServiceHost(String esbWebServiceHost){this.esbWebServiceHost=esbWebServiceHost;}
 
    public String getVideoUrl(){return videoUrl;}
 
    public void setVideoUrl(String videoUrl){this.videoUrl=videoUrl;}
 
    public String getIpHost(){return ipHost;}
 
    public void setIpHost(String ipHost){this.ipHost = ipHost;}
 
    public String getGisHost(){return gisHost;}
 
    public void setGisHost(String gisHost){this.gisHost = gisHost;}
    
    public String getApptokenWebRoot() {
        return apptokenWebRoot;
    }
    
    public void setApptokenWebRoot(String apptokenWebRoot) {
        this.apptokenWebRoot = apptokenWebRoot;
    }
 
    public String getTemplateParamsURL() {
        return templateParamsURL;
    }
 
    public void setTemplateParamsURL(String templateParamsURL) {
        this.templateParamsURL = templateParamsURL;
    }
 
    public String getNcFileConfigURL() {
        return ncFileConfigURL;
    }
 
    public void setNcFileConfigURL(String ncFileConfigURL) {
        this.ncFileConfigURL = ncFileConfigURL;
    }
 
    public String getReadNcFileURL() {
        return readNcFileURL;
    }
 
    public void setReadNcFileURL(String readNcFileURL) {
        this.readNcFileURL = readNcFileURL;
    }
 
    public String getNcStorageUrl() {
        return ncStorageUrl;
    }
 
    public void setNcStorageUrl(String ncStorageUrl) {
        this.ncStorageUrl = ncStorageUrl;
    }
 
    public String getUploadRestemplateURL() {
        return uploadRestemplateURL;
    }
 
    public void setUploadRestemplateURL(String uploadRestemplateURL) {
        this.uploadRestemplateURL = uploadRestemplateURL;
    }
 
    public String getDeleteRestemplateURL() {
        return deleteRestemplateURL;
    }
 
    public void setDeleteRestemplateURL(String deleteRestemplateURL) {
        this.deleteRestemplateURL = deleteRestemplateURL;
    }
 
    public String getProxyUrl() {
        return proxyUrl;
    }
 
    public void setProxyUrl(String proxyUrl) {
        this.proxyUrl = proxyUrl;
    }
}