1
13693261870
2022-09-16 762f2fb45db004618ba099aa3c0bd89dba1eb843
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
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 String loginUrl;     //cas登录url
    private String casHost;      //cas登录域名
    private Integer currentSystemId; //当前系统id
 
    private String uploadUeditorPath; //富文本编辑器图片路径前缀
 
    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 getUploadUeditorPath() {
        return uploadUeditorPath;
    }
 
    public void setUploadUeditorPath(String uploadUeditorPath) {
        this.uploadUeditorPath = uploadUeditorPath;
    }
 
    public Integer getCurrentSystemId() {
        return currentSystemId;
    }
 
    public void setCurrentSystemId(Integer currentSystemId) {
        this.currentSystemId = currentSystemId;
    }
}