package com.energy.manage.analyse.common; import lombok.Data; import org.springframework.beans.factory.annotation.Value; import org.springframework.cloud.context.config.annotation.RefreshScope; import org.springframework.stereotype.Component; import java.util.List; @Data @Component @RefreshScope public class FilePathProperties { /** * 分析文件内网地址 */ @Value("${file.intranet.addr}") public String fileIntranetAddr; /** * 分析文件外网地址 */ @Value("${file.external.addr}") public String fileExternalAddr; }