yz
2021-03-11 c5310438472b4dbb5a4bb7dd76088a693e3972b8
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
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/";
 
    private String empBaseInfoPath = "C:/upload/hr/empBaseInfo/";
 
}