管道基础大数据平台系统开发-【后端】-Server
1
13693261870
2022-09-28 ca9817461a504049e289c154939454a6e5a37089
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
package com.lf.server.config;
 
import org.springframework.beans.factory.annotation.Value;
import org.springframework.stereotype.Component;
 
/**
 * 属性配置类
 * @author WWW
 */
@Component
public class PropertiesConfig {
    @Value("${sys.path}")
    private String path;
 
    public String getPath() {
        return path;
    }
 
    public void setPath(String path) {
        this.path = path;
    }
}