|
@@ -7,6 +7,8 @@ import lombok.NoArgsConstructor;
|
|
|
import org.springframework.boot.context.properties.ConfigurationProperties;
|
|
|
import org.springframework.stereotype.Component;
|
|
|
|
|
|
+import java.util.List;
|
|
|
+
|
|
|
/**
|
|
|
* @author mwh
|
|
|
* description 项目配置
|
|
@@ -27,12 +29,12 @@ public class SystemProperties {
|
|
|
public String downloadPrefix;
|
|
|
|
|
|
/**
|
|
|
- * 文件文件夹路径
|
|
|
+ * 文件文件夹名称
|
|
|
*/
|
|
|
public String fileStoreDir;
|
|
|
|
|
|
/**
|
|
|
- * 文件 注意最后的斜杠
|
|
|
+ * 文件存储路径 注意最后的斜杠
|
|
|
*/
|
|
|
public String fileStoreDirPath;
|
|
|
|
|
@@ -46,4 +48,7 @@ public class SystemProperties {
|
|
|
*/
|
|
|
private String fileTempDir;
|
|
|
|
|
|
+
|
|
|
+ private List<ServerInfo> serverInfo;
|
|
|
+
|
|
|
}
|