luoyb
2021-02-20 bedc1792239e77a46936bf9b175e324d57113bfe
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
package cc.mrbird.febs.server.hr.properties;
 
import lombok.Data;
import org.springframework.boot.SpringBootConfiguration;
import org.springframework.boot.context.properties.ConfigurationProperties;
import org.springframework.context.annotation.PropertySource;
 
/**
 * @author MrBird
 */
@Data
@SpringBootConfiguration
@PropertySource(value = {"classpath:febs-server-hr.properties"})
@ConfigurationProperties(prefix = "febs.server.hr")
public class FebsServerHrProperties {
    /**
     * 文件上传地址
     */
    private String uploadCommonPath = "C:/upload/hr/commonfile/";
 
    private String uploadSinglePath = "C:/upload/hr/singlefile/";
 
}